import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The text to be displayed on web form's submit button. * * @remarks * * If set to "auto" the UI will automatically select between * "pay" and "confirm" for payments and payouts respectively. */ export declare const CallToAction: { readonly Pay: "pay"; readonly Book: "book"; readonly Subscribe: "subscribe"; readonly Donate: "donate"; readonly Confirm: "confirm"; readonly Auto: "auto"; }; /** * The text to be displayed on web form's submit button. * * @remarks * * If set to "auto" the UI will automatically select between * "pay" and "confirm" for payments and payouts respectively. */ export type CallToAction = ClosedEnum; /** @internal */ export declare const CallToAction$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CallToAction$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=calltoaction.d.ts.map