import { ISearchRenderlessParams, ISearchValue } from '../search'; export declare const emitInput: ({ emit }: Pick) => (args_0: string, args_1: ISearchValue) => void; export declare const handleChange: ({ emit, state }: Pick) => (event: Event) => void; export declare const handleInput: ({ api, props, state }: Pick) => (event: Event) => void; export declare const showSelector: ({ vm, state }: Pick) => () => void; export declare const changeKey: ({ emit, state }: Pick) => (key: ISearchValue) => void; export declare const searchClick: ({ emit, props, state }: Pick) => (event: Event) => void; export declare const searchEnterKey: ({ api, props, vm, nextTick }: Pick) => (event: Event) => void; export declare const clickOutside: ({ parent, props, state }: Pick) => (event: Event) => void; export declare const setDefaultType: (searchTypes: ISearchValue[], typeValue: ISearchValue) => ISearchValue; export declare const formatSearchTypes: (searchTypes: ISearchValue[]) => ISearchValue[]; export declare const mounted: ({ api }: Pick) => () => void; export declare const beforeDestroy: ({ api }: Pick) => () => void; export declare const clear: ({ api, emit, vm, state }: Pick) => (event: Event) => void;