import * as z from "zod"; export type PaginationMetaResult = { /** * If provided, pass this as the 'after' param to load the next page */ after?: string | undefined; /** * What was the maximum number of results requested */ pageSize?: number | undefined; }; /** @internal */ export declare const PaginationMetaResult$inboundSchema: z.ZodType; /** @internal */ export type PaginationMetaResult$Outbound = { after?: string | undefined; page_size: number; }; /** @internal */ export declare const PaginationMetaResult$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaginationMetaResult$ { /** @deprecated use `PaginationMetaResult$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaginationMetaResult$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaginationMetaResult$Outbound` instead. */ type Outbound = PaginationMetaResult$Outbound; } //# sourceMappingURL=paginationmetaresult.d.ts.map