import * as z from "zod"; export type PaginationMetaResultWithTotal = { /** * 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; /** * How many matching records were there in total, if known */ totalRecordCount?: number | undefined; }; /** @internal */ export declare const PaginationMetaResultWithTotal$inboundSchema: z.ZodType; /** @internal */ export type PaginationMetaResultWithTotal$Outbound = { after?: string | undefined; page_size: number; total_record_count?: number | undefined; }; /** @internal */ export declare const PaginationMetaResultWithTotal$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 PaginationMetaResultWithTotal$ { /** @deprecated use `PaginationMetaResultWithTotal$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaginationMetaResultWithTotal$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaginationMetaResultWithTotal$Outbound` instead. */ type Outbound = PaginationMetaResultWithTotal$Outbound; } //# sourceMappingURL=paginationmetaresultwithtotal.d.ts.map