type OrderWithCartPaymentCollection = { cart?: { payment_collection?: unknown; } | null; payment_collections?: unknown[]; payment_status?: string; }; export declare const withCartPaymentCollectionFields: (fields: string[]) => string[]; export declare const normalizeOrderPaymentCollections: (order: T) => T; export {};