import { z } from 'zod'; /** * Zod schema for the PingConfigPayload 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 pingConfigPayload: z.ZodLazy>; /** * * @typedef {PingConfigPayload} pingConfigPayload * @property {string} - URL to ping */ export type PingConfigPayload = z.infer; /** * Zod schema for mapping API responses to the PingConfigPayload 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 pingConfigPayloadResponse: z.ZodLazy, { url: string; }, { url: string; }>>; /** * Zod schema for mapping the PingConfigPayload 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 pingConfigPayloadRequest: z.ZodLazy, { url: string; }, { url: string; }>>; //# sourceMappingURL=ping-config-payload.d.ts.map