export declare function useControllableState( /** The controlled value; undefined means "uncontrolled". */ controlled: T | undefined, /** Initial value for uncontrolled use. */ defaultValue: T, /** Change callback, fired in BOTH modes. */ onChange?: (next: T) => void): [T, (next: T) => void]; //# sourceMappingURL=use-controllable-state.d.ts.map