import { Coords } from "."; interface DropdownContextType { open: boolean; setOpen: (value: boolean) => void; buttonRef: React.RefObject | null; containerRef: React.RefObject | null; coords: Coords | null; dropdownContainerId: string; } /** * Represents the context for the dropdown component, providing information about its state and references. */ export declare const DropdownContext: import("react").Context; export {};