export declare const DOWN_ARROW: { keyCode: number; }; export declare const selectOptions: string[]; export declare const selectOptionsObject: { red: string; yellow: string; green: string; blue: string; teal: string; orange: string; }; export declare const optionsIconsArray: { label: string; value: string; icon: import("react").ForwardRefExoticComponent>; }[]; export declare const groupedOptions: { label: string; options: { label: string; value: string; }[]; }[]; export declare const groupedOptionsWithIcons: { label: string; options: { label: string; value: string; icon: import("react").ForwardRefExoticComponent>; }[]; }[]; export declare const groupedOptionsWithTitles: { label: string; options: { label: string; value: string; subtitle: string; }[]; }[]; export declare const optionsWithAbbreviations: { label: string; value: string; abbreviation: string; }[]; export declare const openDropdown: (view: any) => Promise;