import { z } from 'zod'; /** * Zod schema for the IntegrationConfig 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 integrationConfig: z.ZodLazy>; /** * * @typedef {IntegrationConfig} integrationConfig * @property {any} * @property {string} * @property {string} */ export type IntegrationConfig = z.infer; /** * Zod schema for mapping API responses to the IntegrationConfig 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 integrationConfigResponse: z.ZodLazy, { config: any; id: string; name: string; }, { id: string; name: string; config?: any; }>>; /** * Zod schema for mapping the IntegrationConfig 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 integrationConfigRequest: z.ZodLazy, { config: any; id: string; name: string; }, { id: string; name: string; config?: any; }>>; //# sourceMappingURL=integration-config.d.ts.map