import { UxModalService } from '@aurelia-ux/modal'; import { Container } from 'aurelia-framework'; import { EnsureModel } from '../../deco/helpers/ensure-model'; import { UserModel } from '../../models/user.model'; export declare class SelectUserControl { private container; private modalService; ensure: EnsureModel; ready: boolean; value: string; disableIds: Array; availabledIds: Array; disabled: boolean; constructor(container: Container, modalService: UxModalService); bind(): void; valueChanged(): void; openDialog(): Promise; unselect(): void; }