import type { StreamerbotVariableValue } from '@streamerbot/client'; import { Ref, type MaybeRefOrGetter } from 'vue-demi'; export type UseGlobalVariableOptions = { persisted?: boolean; }; export declare function useGlobalVariable(name: string, options?: MaybeRefOrGetter>): { value: Ref; };