import type { FocusedOption, OptionValueCallback, OptionLabelCallback, OptionFilterCallback, OptionDisabledCallback } from '../types'; export declare const MENU_ITEM_SIZE_DEFAULT = 35; export declare const MENU_MAX_HEIGHT_DEFAULT = 300; export declare const LOADING_MSG_DEFAULT = "Loading.."; export declare const NO_OPTIONS_MSG_DEFAULT = "No options"; export declare const PLACEHOLDER_DEFAULT = "Select option.."; export declare const FOCUSED_OPTION_DEFAULT: FocusedOption; export declare const GET_OPTION_LABEL_DEFAULT: OptionLabelCallback; export declare const GET_OPTION_VALUE_DEFAULT: OptionValueCallback; export declare const GET_OPTION_DISABLED_DEFAULT: OptionDisabledCallback; export declare const GET_OPTION_FILTER_DEFAULT: OptionFilterCallback; export declare const EMPTY_ARRAY: any[];