@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
7 lines (6 loc) • 384 B
text/typescript
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>;