import type { TSelectOptionProps, TSelectProps, TSelectSize, TSelectStatus, TSelectVariant } from './Select.type'; export declare const SELECT_CLEAR_SEARCH_ID = "select-clear-search"; export declare const SELECT_OPTION_ROOT_ID = "select-option-root"; export declare const SELECT_OPTION_TIMEOUT = 300; export declare const SELECT_SIZES: TSelectSize[]; export declare const SELECT_SIZE: { [key in TSelectSize]: key; }; export declare const SELECT_STATUSES: TSelectStatus[]; export declare const SELECT_STATUS: { [key in TSelectStatus]: key; }; export declare const SELECT_VARIANTS: TSelectVariant[]; export declare const SELECT_VARIANT: { [key in TSelectVariant]: key; }; export declare const SELECT_OPTION_DEFAULT_PROPS: TSelectOptionProps; export declare const SELECT_DEFAULT_PROPS: TSelectProps;