import * as z from "zod/v3"; export type MockCardMerchantAdviceCodeOptions = { /** * The MAC to return for this request. */ result?: string | null | undefined; /** * When set, the MAC is only returned if the card number matches this account number. */ accountNumber: string | null; }; /** @internal */ export type MockCardMerchantAdviceCodeOptions$Outbound = { result?: string | null | undefined; account_number: string | null; }; /** @internal */ export declare const MockCardMerchantAdviceCodeOptions$outboundSchema: z.ZodType; export declare function mockCardMerchantAdviceCodeOptionsToJSON(mockCardMerchantAdviceCodeOptions: MockCardMerchantAdviceCodeOptions): string; //# sourceMappingURL=mockcardmerchantadvicecodeoptions.d.ts.map