export type PaginationBuildInput = { limit?: number; offset?: number; }; export type PaginationParseOptions = { maxLimit?: number; throwOnFailure?: boolean; }; export type PaginationParseOutput = { limit?: number; offset?: number; }; //# sourceMappingURL=type.d.ts.map