import { z } from 'zod'; /** * Zod schema for the StripeConfigPayload 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 stripeConfigPayload: z.ZodLazy; webhookSigningSecret: z.ZodString; }, "strip", z.ZodTypeAny, { webhookSigningSecret: string; id?: string | undefined; }, { webhookSigningSecret: string; id?: string | undefined; }>>; /** * * @typedef {StripeConfigPayload} stripeConfigPayload * @property {string} - The unique identifier for this configuration * @property {string} - The signing secret to verify incoming requests from Stripe */ export type StripeConfigPayload = z.infer; /** * Zod schema for mapping API responses to the StripeConfigPayload 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 stripeConfigPayloadResponse: 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; }>>; /** * Zod schema for mapping the StripeConfigPayload 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 stripeConfigPayloadRequest: 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; }>>; //# sourceMappingURL=stripe-config-payload.d.ts.map