/// export interface SelectedValueContextValue { selectedValue: any; handleValueChange?: (value: any) => void; } declare const SelectedValueContext: import("react").Context; export default SelectedValueContext;