export interface IDropdownOption { label: string; value: string; } export interface IDropdownBaseProps { id?: string; ariaLabel?: string; onClose?: () => void; } export declare const KEYBOARD_KEYS: { readonly ARROW_DOWN: "ArrowDown"; readonly ARROW_UP: "ArrowUp"; readonly HOME: "Home"; readonly END: "End"; readonly ESCAPE: "Escape"; readonly ENTER: "Enter"; readonly SPACE: " "; };