declare type INextState<T> = T | ((prevState: T) => T);
export declare function useResetState<T>(initValue: T): [T, (nextState: INextState<T>) => void, () => void];
export {};
