import { Dispatch, SetStateAction } from 'react';
export declare function useState<T>(): [T | undefined, Dispatch<SetStateAction<T | undefined>>, () => void];
export declare function useState<T>(initial: T): [T, Dispatch<SetStateAction<T>>, () => void];
