import type { Component, Props, Store } from './types';
declare const componentID = "-ui-select";
declare const getDefaultState: () => Store[0];
declare const Select: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{
    theme: Props["theme"];
    closeOnSelect: Props["closeOnSelect"];
    listDisabledOptions: Props["listDisabledOptions"];
}>>;
export default Select;
export { componentID, getDefaultState };
export type { Props, Component };
