export type OrderDocument = { id: string; fileId: string; type: OrderDocumentType; createdAt: string; updatedAt: string; }; export declare enum OrderDocumentType { ComercialInvoice = "ComercialInvoice" }