export declare type PaginationResponse = { total: number; limit: number; offset: number; page: number; pages: number; }; export declare type PaginationRequest = { page?: number; limit?: number; offset?: number; }; export declare const buildPaginateParams: (req: PaginationRequest) => string; //# sourceMappingURL=Paginate.d.ts.map