UNPKG

@while-and-for/tremor-react

Version:

The React library to build dashboards faster.

8 lines (7 loc) 274 B
/// <reference types="react" /> export interface SelectedValueContextValue { selectedValue: any; handleValueChange?: (value: any) => void; } declare const SelectedValueContext: import("react").Context<SelectedValueContextValue>; export default SelectedValueContext;