import { z } from 'zod'; /** * Zod schema for the StripeConfig 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 stripeConfig: z.ZodLazy; webhookSigningSecret: z.ZodString; }, "strip", z.ZodTypeAny, { webhookSigningSecret: string; id?: string | undefined; }, { webhookSigningSecret: string; id?: string | undefined; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { webhookSigningSecret: string; id?: string | undefined; }; id: string; name: string; }, { config: { webhookSigningSecret: string; id?: string | undefined; }; id: string; name: string; }>>; /** * * @typedef {StripeConfig} stripeConfig * @property {StripeConfigPayload} * @property {string} * @property {string} */ export type StripeConfig = z.infer; /** * Zod schema for mapping API responses to the StripeConfig 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 stripeConfigResponse: z.ZodLazy; webhook_signing_secret: z.ZodString; }, "strip", z.ZodTypeAny, { webhook_signing_secret: string; id?: string | undefined; }, { webhook_signing_secret: string; id?: string | undefined; }>, { id: string | undefined; webhookSigningSecret: string; }, { webhook_signing_secret: string; id?: string | undefined; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { id: string | undefined; webhookSigningSecret: string; }; id: string; name: string; }, { config: { webhook_signing_secret: string; id?: string | undefined; }; id: string; name: string; }>, { config: { id: string | undefined; webhookSigningSecret: string; }; id: string; name: string; }, { config: { webhook_signing_secret: string; id?: string | undefined; }; id: string; name: string; }>>; /** * Zod schema for mapping the StripeConfig 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 stripeConfigRequest: z.ZodLazy; webhookSigningSecret: z.ZodString; }, "strip", z.ZodTypeAny, { webhookSigningSecret: string; id?: string | undefined; }, { webhookSigningSecret: string; id?: string | undefined; }>, { id: string | undefined; webhook_signing_secret: string; }, { webhookSigningSecret: string; id?: string | undefined; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { id: string | undefined; webhook_signing_secret: string; }; id: string; name: string; }, { config: { webhookSigningSecret: string; id?: string | undefined; }; id: string; name: string; }>, { config: { id: string | undefined; webhook_signing_secret: string; }; id: string; name: string; }, { config: { webhookSigningSecret: string; id?: string | undefined; }; id: string; name: string; }>>; //# sourceMappingURL=stripe-config.d.ts.map