/** * Manages a value that can be either controlled (value supplied by parent) * or uncontrolled (managed internally with an optional callback). */ export declare function useControllableValue(controlled: Value | undefined, defaultValue: Value, onChange?: (value: Value) => void): [Value, (next: Value) => void]; //# sourceMappingURL=useControllableState.d.ts.map