import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateTransferDestinationCard = { /** * An optional override of the default card statement descriptor for a transfer. Accounts must be enabled by Moov to set this field. */ dynamicDescriptor?: string | undefined; }; /** @internal */ export declare const CreateTransferDestinationCard$inboundSchema: z.ZodType; /** @internal */ export type CreateTransferDestinationCard$Outbound = { dynamicDescriptor?: string | undefined; }; /** @internal */ export declare const CreateTransferDestinationCard$outboundSchema: z.ZodType; export declare function createTransferDestinationCardToJSON(createTransferDestinationCard: CreateTransferDestinationCard): string; export declare function createTransferDestinationCardFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createtransferdestinationcard.d.ts.map