import { Dispatch, SetStateAction, MutableRefObject } from 'react'; export declare type UseStateInterface = (initialState: S | (() => S)) => [S, Dispatch>]; export declare type UseRefInterface = (initialValue: T) => MutableRefObject; export declare type UseEffectInterface = any;