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