import { AmenityId } from './amenityId'; import { OrderStatus } from './orderStatus'; export declare class Order extends null { 'id': AmenityId; 'createdAt': any | null; 'updatedAt': any | null; 'merchantID': string; 'memberID'?: any | null; 'mobileNumber'?: any | null; 'status': OrderStatus; 'currency': any | null; 'amountTotal': any | null; 'stripeCheckoutSessionID'?: any | null; 'stripePaymentIntentID'?: any | null; 'stripeChargeID'?: any | null; 'receiptURL'?: any | null; 'acquisitionSource'?: any | null; 'shareId'?: any | null; 'donorNote'?: any | null; 'lineItems': any | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): any; }