import { Ref } from 'react'; export type DropdownDomStylesApplier = (itemElement?: HTMLElement, wasHiddenBefore?: boolean) => void; export type DropdownContextData = { dropdownElementRef: Ref; setDropdownDomStylesApplier: (updateDropdownDomStyles: DropdownDomStylesApplier) => void; }; export declare const DropdownContext: import('react').Context;