import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; import { ShipmentCreateRequest, ShipmentCreateRequest$Outbound } from "./shipmentcreaterequest.js"; export declare const LabelFileType: { readonly Png: "PNG"; readonly PNG23x75: "PNG_2.3x7.5"; readonly Pdf: "PDF"; readonly PDF23x75: "PDF_2.3x7.5"; readonly PDF4x6: "PDF_4x6"; readonly PDF4x8: "PDF_4x8"; readonly PdfA4: "PDF_A4"; readonly PdfA6: "PDF_A6"; readonly Zplii: "ZPLII"; }; export type LabelFileType = ClosedEnum; export type InstantTransactionCreateRequest = { async?: boolean | undefined; carrierAccount: string; labelFileType?: LabelFileType | undefined; metadata?: string | undefined; servicelevelToken: string; shipment: ShipmentCreateRequest; order?: string | undefined; }; /** @internal */ export declare const LabelFileType$outboundSchema: z.ZodMiniEnum; /** @internal */ export type InstantTransactionCreateRequest$Outbound = { async: boolean; carrier_account: string; label_file_type?: string | undefined; metadata?: string | undefined; servicelevel_token: string; shipment: ShipmentCreateRequest$Outbound; order?: string | undefined; }; /** @internal */ export declare const InstantTransactionCreateRequest$outboundSchema: z.ZodMiniType; export declare function instantTransactionCreateRequestToJSON(instantTransactionCreateRequest: InstantTransactionCreateRequest): string; //# sourceMappingURL=instanttransactioncreaterequest.d.ts.map