import { IPickerListItem } from './types'; export declare const ITEM_GAP_HEIGHT = 2; export declare const MIN_LIST_HEIGHT = 200; export declare const DEFAULT_LIST_HEIGHT = 400; export declare const CUSTOM_ITEMS: IPickerListItem[]; export declare const DEFAULT_PICKER_OPTIONS: IPickerListItem[]; export declare const SELECTED_OPTIONS: { key: string; name: string; }[]; export declare const DEFAULT_EXTENDED_OPTIONS: ({ key: string; name: string; groupHeader: boolean; disabled?: undefined; } | { key: string; name: string; groupHeader?: undefined; disabled?: undefined; } | { key: string; name: string; disabled: boolean; groupHeader?: undefined; })[]; export declare const DEFAULT_MORE_PICKER_OPTIONS: IPickerListItem[]; export declare const SELECT_ALL_OPTION_KEY = "select-all";