import { Ref } from 'vue';
export declare const useState: <T>(defaultValue: T | undefined) => [Ref<T, T>, (newValue: T) => void];
