export declare type Pagination = {
    limit?: number;
    order?: "desc" | "asc";
    starting_after?: string;
    ending_before?: string;
};
