import { IOption, ISearchArgument } from '../../components/ez-combo-box/ez-combo-box'; import IAction from '../interfaces/IAction'; export declare const SHORTCUT_SEARCH_FIELD = "ctrl+f"; export declare const SEARCH_FIELD_FULL_WIDTH = 240; export declare const buildFieldSearch: (action: IAction, optionLoader: (argument: ISearchArgument) => Promise>, onSelectField: (field: IOption) => void) => any; export declare const openFieldSearch: (splitButton: HTMLEzSplitButtonElement, field: HTMLEzSearchElement) => Promise; export declare const focusOnFieldSerch: (field: HTMLEzSearchElement) => Promise;