import { z } from 'zod'; /** * Zod schema for the TwilioConfigPayload 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 twilioConfigPayload: z.ZodLazy>; /** * * @typedef {TwilioConfigPayload} twilioConfigPayload * @property {string} - The SID for your Twilio account * @property {string} - A US1 API key for Twilio- - https://www.twilio.com/docs/iam/api-keys * @property {string} - The API Secret for Twilio * @property {string} - The phone number to send from, in E.164 format */ export type TwilioConfigPayload = z.infer; /** * Zod schema for mapping API responses to the TwilioConfigPayload 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 twilioConfigPayloadResponse: z.ZodLazy, { accountSid: string; apiKey: string; apiSecret: string; from: string; }, { from: string; api_key: string; account_sid: string; api_secret: string; }>>; /** * Zod schema for mapping the TwilioConfigPayload 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 twilioConfigPayloadRequest: z.ZodLazy, { account_sid: string; api_key: string; api_secret: string; from: string; }, { apiKey: string; from: string; accountSid: string; apiSecret: string; }>>; //# sourceMappingURL=twilio-config-payload.d.ts.map