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