import { ReactNode, FC, Context } from 'react'; import { DropdownContextType } from './context-types'; /** * React Context for managing dropdown component state and functionality. * This context provides access to state, actions, refs, and configuration * for all composite components within the dropdown hierarchy. * * @private */ export declare const DropdownContext: Context; export declare const DropdownProvider: FC<{ value: DropdownContextType; children: ReactNode; }>; export declare const useDropdownContext: () => DropdownContextType;