import type { UniqueKey, SetReStateAction } from '../core/types';
import type { DispatchReState } from './types';
export declare function useReState<S>(key: UniqueKey, initialValue?: SetReStateAction<S>): [S, DispatchReState<SetReStateAction<S>>];
export declare namespace useReState {
    var displayName: string;
}
