import type { Component, State, Props } from './types';
declare const componentID = "-ui-dropdown_search";
declare const getDefaultState: () => State;
declare const DropdownSearch: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{
    theme: Props["theme"];
    minInputLength: Props["minInputLength"];
    listDisabledOptions: Props["listDisabledOptions"];
}>>;
export default DropdownSearch;
export { componentID, getDefaultState };
export type { Component, Props };
