import { Locale } from '@zag-js/i18n-utils';
import { ComputedRef } from 'vue';
export interface LocaleContext extends Locale {
}
export declare const DEFAULT_LOCALE: ComputedRef<LocaleContext>;
export declare const LocaleContextProvider: (opts: ComputedRef<LocaleContext>) => void, useLocaleContext: (fallback?: ComputedRef<LocaleContext> | undefined) => ComputedRef<LocaleContext>;
