import { z } from 'zod'; /** * Zod schema for the Links model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const links: z.ZodLazy; next: z.ZodNullable>; prev: z.ZodNullable>; }, "strip", z.ZodTypeAny, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>>; /** * * @typedef {Links} links * @property {string} * @property {string} * @property {string} */ export type Links = z.infer; /** * Zod schema for mapping API responses to the Links application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const linksResponse: z.ZodLazy; next: z.ZodNullable>; prev: z.ZodNullable>; }, "strip", z.ZodTypeAny, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>, { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>>; /** * Zod schema for mapping the Links application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const linksRequest: z.ZodLazy; next: z.ZodNullable>; prev: z.ZodNullable>; }, "strip", z.ZodTypeAny, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>, { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>>; //# sourceMappingURL=links.d.ts.map