export interface PaginationParams {
    limit?: number;
    next?: string;
    before?: string;
    last?: string;
}
