export type TDropdownValue = string | null; export type TDropdownContextValue = { value: TDropdownValue; controlledValue?: TDropdownValue; text: string; } | null; export interface IDropdownContextType { value: TDropdownContextValue; setValue: (args: TDropdownContextValue) => void; } export declare const DropdownContext: import('react').Context; export declare const useDropdownContext: () => IDropdownContextType;