import { z } from 'zod'; /** * Zod schema for the Channels 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 channels: z.ZodLazy; name: z.ZodOptional; }, "strip", z.ZodTypeAny, { name?: string | undefined; enabled?: boolean | undefined; }, { name?: string | undefined; enabled?: boolean | undefined; }>>; /** * * @typedef {Channels} channels * @property {boolean} * @property {string} */ export type Channels = z.infer; /** * Zod schema for mapping API responses to the Channels 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 channelsResponse: z.ZodLazy; name: z.ZodOptional; }, "strip", z.ZodTypeAny, { name?: string | undefined; enabled?: boolean | undefined; }, { name?: string | undefined; enabled?: boolean | undefined; }>, { enabled: boolean | undefined; name: string | undefined; }, { name?: string | undefined; enabled?: boolean | undefined; }>>; /** * Zod schema for mapping the Channels 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 channelsRequest: z.ZodLazy; name: z.ZodOptional; }, "strip", z.ZodTypeAny, { name?: string | undefined; enabled?: boolean | undefined; }, { name?: string | undefined; enabled?: boolean | undefined; }>, { enabled: boolean | undefined; name: string | undefined; }, { name?: string | undefined; enabled?: boolean | undefined; }>>; //# sourceMappingURL=channels.d.ts.map