import { AdminCustomerModel } from 'aurelia-shop'; import { SelectItemBase } from './select-item-base'; import { UxModalService } from '@aurelia-ux/modal'; import { Global } from '../global'; export declare class SelectCustomerControl extends SelectItemBase { shopId: string; value: string; fromIds: string[]; confirmOnRemove: boolean; constructor(global: Global, modalService: UxModalService, element: HTMLElement); setEnsure(): void; openAddCustomerDialog(): Promise; openEditCustomerDialog(customer: AdminCustomerModel): Promise; }