import { z } from 'zod'; /** * Zod schema for the WebpushConfigCollection 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 webpushConfigCollection: z.ZodLazy>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }>>, "many">>; links: z.ZodOptional; 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; }>>>; }, "strip", z.ZodTypeAny, { data?: { config: { privateKey: string; publicKey: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }, { data?: { config: { privateKey: string; publicKey: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; /** * * @typedef {WebpushConfigCollection} webpushConfigCollection * @property {WebpushConfig[]} * @property {Links} */ export type WebpushConfigCollection = z.infer; /** * Zod schema for mapping API responses to the WebpushConfigCollection 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 webpushConfigCollectionResponse: z.ZodLazy, { privateKey: string; publicKey: string; }, { private_key: string; public_key: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }, { config: { private_key: string; public_key: string; }; id: string; name: string; }>, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }, { config: { private_key: string; public_key: string; }; id: string; name: string; }>>, "many">>; links: z.ZodOptional; 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; }>>>; }, "strip", z.ZodTypeAny, { data?: { config: { privateKey: string; publicKey: string; }; id: string; name: string; }[] | undefined; links?: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { config: { private_key: string; public_key: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>, { data: { config: { privateKey: string; publicKey: string; }; id: string; name: string; }[] | undefined; links: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { config: { private_key: string; public_key: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; /** * Zod schema for mapping the WebpushConfigCollection 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 webpushConfigCollectionRequest: z.ZodLazy, { private_key: string; public_key: string; }, { privateKey: string; publicKey: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { private_key: string; public_key: string; }; id: string; name: string; }, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }>, { config: { private_key: string; public_key: string; }; id: string; name: string; }, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }>>, "many">>; links: z.ZodOptional; 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; }>>>; }, "strip", z.ZodTypeAny, { data?: { config: { private_key: string; public_key: string; }; id: string; name: string; }[] | undefined; links?: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { config: { privateKey: string; publicKey: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>, { data: { config: { private_key: string; public_key: string; }; id: string; name: string; }[] | undefined; links: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { config: { privateKey: string; publicKey: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; //# sourceMappingURL=webpush-config-collection.d.ts.map