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