export declare function useRefState<T>(initValue: T): [T, {
    current: T;
}, (val: T) => void];
