import { Ref } from "vue";
export declare function useState<T>(initialState: T): [Ref<T>, (value: T) => T];
