import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AsyncTransfer = { transferID: string; createdOn: Date; }; /** @internal */ export declare const AsyncTransfer$inboundSchema: z.ZodType; /** @internal */ export type AsyncTransfer$Outbound = { transferID: string; createdOn: string; }; /** @internal */ export declare const AsyncTransfer$outboundSchema: z.ZodType; export declare function asyncTransferToJSON(asyncTransfer: AsyncTransfer): string; export declare function asyncTransferFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=asynctransfer.d.ts.map