import * as z from "zod"; export type AfterPaginationMetaResultV2 = { /** * The time, if it exists, of the last entry's end time */ after: string; /** * The URL to fetch the next page of entries */ afterUrl: string; }; /** @internal */ export declare const AfterPaginationMetaResultV2$inboundSchema: z.ZodType; /** @internal */ export type AfterPaginationMetaResultV2$Outbound = { after: string; after_url: string; }; /** @internal */ export declare const AfterPaginationMetaResultV2$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 AfterPaginationMetaResultV2$ { /** @deprecated use `AfterPaginationMetaResultV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AfterPaginationMetaResultV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AfterPaginationMetaResultV2$Outbound` instead. */ type Outbound = AfterPaginationMetaResultV2$Outbound; } //# sourceMappingURL=afterpaginationmetaresultv2.d.ts.map