import type { Dispatch, SetStateAction, MutableRefObject } from 'react'; declare type StateType = T | (() => T); export default function useRefState(initialState: StateType): [T, Dispatch>, MutableRefObject]; export {};