import type { useInteractions } from "@floating-ui/react"; import type { ThemingProps } from "../../types"; import type { DropdownTheme } from "./Dropdown"; export interface DropdownContextValue extends ThemingProps { activeIndex: number | null; dismissOnClick?: boolean; getItemProps: ReturnType["getItemProps"]; handleSelect: (index: number | null) => void; } export declare const DropdownContext: import("react").Context; export declare function useDropdownContext(): DropdownContextValue;