import * as z from "zod/v4-mini"; import { LabelFileTypeEnum } from "./labelfiletypeenum.js"; export type TransactionCreateRequest = { async?: boolean | undefined; /** * Print format of the label. If empty, will use the default format set from * * @remarks * the Shippo dashboard. */ labelFileType?: LabelFileTypeEnum | undefined; metadata?: string | undefined; rate: string; order?: string | undefined; }; /** @internal */ export type TransactionCreateRequest$Outbound = { async: boolean; label_file_type?: string | undefined; metadata?: string | undefined; rate: string; order?: string | undefined; }; /** @internal */ export declare const TransactionCreateRequest$outboundSchema: z.ZodMiniType; export declare function transactionCreateRequestToJSON(transactionCreateRequest: TransactionCreateRequest): string; //# sourceMappingURL=transactioncreaterequest.d.ts.map