import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Links to navigate to previous or next pages through the API */ export type Links = { /** * Link to navigate to the previous page through the API */ previous?: string | null | undefined; /** * Link to navigate to the current page through the API */ current?: string | undefined; /** * Link to navigate to the previous page through the API */ next?: string | null | undefined; }; /** @internal */ export declare const Links$inboundSchema: z.ZodType; /** @internal */ export type Links$Outbound = { previous?: string | null | undefined; current?: string | undefined; next?: string | null | undefined; }; /** @internal */ export declare const Links$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 Links$ { /** @deprecated use `Links$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Links$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Links$Outbound` instead. */ type Outbound = Links$Outbound; } export declare function linksToJSON(links: Links): string; export declare function linksFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=links.d.ts.map