import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetProcessesRequest {
    /** Number limitation for the result returned */
    limit?: number;
    /** Beginning point in the list to retrieve from. */
    offset?: number;
    /**
     * Sort the results in the ascending/descending order of record creation.
     * Default order is **descending** if `sort` is not passed
     */
    sort?: Brevo.GetProcessesRequestSort;
}
