import { FilterBaseControl } from './filter-base-control'; import { UxModalService } from '@aurelia-ux/modal'; import { Global } from '../global'; interface UxInputElement extends HTMLElement { value: any; } export declare class FilterItemControl extends FilterBaseControl { disabled: any; readonly: any; label: string; multiple: any; options: Array; shopId: string; value: string | string[]; labelKey: string; valueKey: string; icon: string; showSearch: 'auto' | boolean; focused: boolean; constructor(global: Global, element: UxInputElement, modalService: UxModalService); setEnsure(): void; computeValueLabel(value: any): string; } export {};