import type { Dispatch, MutableRefObject, SetStateAction } from 'react';
export default function useStateRef<T>(initialValue?: T): readonly [T, Dispatch<SetStateAction<T>>, MutableRefObject<T>];
//# sourceMappingURL=useStateRef.d.ts.map