import * as react from 'react'; /** @see https://foxact.skk.moe/use-uncontrolled */ declare function useUncontrolled(initialValue: T, transformValue?: (value: T) => T): readonly [T, () => void, react.RefObject]; export { useUncontrolled };