import * as React from 'react'; import { SetStateAction } from 'react'; export declare type UseSetStateAction = React.Dispatch>>; export declare type UseSetState = { setState: UseSetStateAction; state: T; resetState: () => void; }; export declare function useSetState(initialValue: T): UseSetState; export default useSetState;