import { UxModalService } from '@aurelia-ux/modal'; import { Global } from '../global'; import { AdminFeeModel } from 'aurelia-shop'; import { ShopStateBase } from './shop-state-base'; export declare class Fees extends ShopStateBase { private modalService; constructor(global: Global, modalService: UxModalService); openAddFeeDialog(): Promise; openFee(fee: AdminFeeModel): Promise; orderChanged(fees: AdminFeeModel[], change: any): void; }