import { ShopFetchBase } from '../pages/shop-fetch-base'; import { UxModalService, UxModalServiceResult } from '@aurelia-ux/modal'; import { AdminCustomerModel } from 'aurelia-shop'; import { Global } from '../global'; export declare class SelectCustomer extends ShopFetchBase { customerId: string; customerIds: string[]; private multiple; private required; private fromIds; constructor(global: Global, modalService: UxModalService); activate(params: any): void; selectCustomer(customer: AdminCustomerModel): void; canDeactivate(result: UxModalServiceResult): Promise; isSelected(customerId: string, selectedCustomerId: string, selectedCustomersIds: string[]): boolean; }