import { UxModalService } from '@aurelia-ux/modal'; import { AdminCustomerModel, AdminOrderModel } from 'aurelia-shop'; import { ShopGlobal2 } from 'aurelia-shop'; export declare class CustomerOrdersDialog { shopGlobal: ShopGlobal2; private modalService; shopId: string; private shopAdmin; customerId: string; customer: AdminCustomerModel; orders: AdminOrderModel[]; constructor(shopGlobal: ShopGlobal2, modalService: UxModalService); activate(params: any): void; shopIdChanged(): Promise; fetchCustomer(): Promise; fetchOrders(): Promise; ordersByMonth: { [key: string]: AdminOrderModel[]; }; setOrdersByMonth(): void; downloadOrder(orderId: string): Promise; downloadMonthlyOrder(month: string): Promise; downloadDelivery(deliveryId: string): Promise; }