import { SetStateAction } from 'react'; export type Binding = { value: T; setValue: React.Dispatch>; }; export type BooleanBinding = Binding & { toggle: () => void; }; export declare function getValueOrBinding(incoming: T | Binding): T;