import { z } from 'zod'; /** * Zod schema for the PingConfig 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 pingConfig: z.ZodLazy>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { url: string; }; id: string; name: string; }, { config: { url: string; }; id: string; name: string; }>>; /** * * @typedef {PingConfig} pingConfig * @property {PingConfigPayload} * @property {string} * @property {string} */ export type PingConfig = z.infer; /** * Zod schema for mapping API responses to the PingConfig 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 pingConfigResponse: z.ZodLazy, { url: string; }, { url: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { url: string; }; id: string; name: string; }, { config: { url: string; }; id: string; name: string; }>, { config: { url: string; }; id: string; name: string; }, { config: { url: string; }; id: string; name: string; }>>; /** * Zod schema for mapping the PingConfig 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 pingConfigRequest: z.ZodLazy, { url: string; }, { url: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { url: string; }; id: string; name: string; }, { config: { url: string; }; id: string; name: string; }>, { config: { url: string; }; id: string; name: string; }, { config: { url: string; }; id: string; name: string; }>>; //# sourceMappingURL=ping-config.d.ts.map