import { z } from 'zod'; /** * Zod schema for the TwilioConfig 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 twilioConfig: z.ZodLazy>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { apiKey: string; from: string; accountSid: string; apiSecret: string; }; id: string; name: string; }, { config: { apiKey: string; from: string; accountSid: string; apiSecret: string; }; id: string; name: string; }>>; /** * * @typedef {TwilioConfig} twilioConfig * @property {TwilioConfigPayload} * @property {string} * @property {string} */ export type TwilioConfig = z.infer; /** * Zod schema for mapping API responses to the TwilioConfig 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 twilioConfigResponse: z.ZodLazy, { accountSid: string; apiKey: string; apiSecret: string; from: string; }, { from: string; api_key: string; account_sid: string; api_secret: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { accountSid: string; apiKey: string; apiSecret: string; from: string; }; id: string; name: string; }, { config: { from: string; api_key: string; account_sid: string; api_secret: string; }; id: string; name: string; }>, { config: { accountSid: string; apiKey: string; apiSecret: string; from: string; }; id: string; name: string; }, { config: { from: string; api_key: string; account_sid: string; api_secret: string; }; id: string; name: string; }>>; /** * Zod schema for mapping the TwilioConfig 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 twilioConfigRequest: z.ZodLazy, { account_sid: string; api_key: string; api_secret: string; from: string; }, { apiKey: string; from: string; accountSid: string; apiSecret: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { account_sid: string; api_key: string; api_secret: string; from: string; }; id: string; name: string; }, { config: { apiKey: string; from: string; accountSid: string; apiSecret: string; }; id: string; name: string; }>, { config: { account_sid: string; api_key: string; api_secret: string; from: string; }; id: string; name: string; }, { config: { apiKey: string; from: string; accountSid: string; apiSecret: string; }; id: string; name: string; }>>; //# sourceMappingURL=twilio-config.d.ts.map