import { MutableRefObject } from 'react'; export declare const getRefValue: (ref: React.MutableRefObject) => T; export declare const useRefState: (param: T) => [MutableRefObject, (p: T) => void];