import { FocusManager } from "../../shared"; import { SyntheticEvent } from "react"; export interface ListboxContextType { selectedKeys?: string[]; onSelect?: (event: SyntheticEvent, key: string) => void; onFocus?: (event: SyntheticEvent, key: string, activeElement: HTMLElement) => void; focusManager?: FocusManager; focusOnHover?: boolean; } export declare const ListboxContext: import("react").Context; export declare function useListboxContext(): ListboxContextType;