import * as z from "zod/v3"; export type CryptogramCreate = { /** * Defines if the request is merchant initiated or not. */ merchantInitiated: boolean; }; /** @internal */ export type CryptogramCreate$Outbound = { merchant_initiated: boolean; }; /** @internal */ export declare const CryptogramCreate$outboundSchema: z.ZodType; export declare function cryptogramCreateToJSON(cryptogramCreate: CryptogramCreate): string; //# sourceMappingURL=cryptogramcreate.d.ts.map