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