import type { ComputedRef, InjectionKey } from 'vue';
import type { Locale } from './types';
export type LocaleContextProps = Locale & {
    exist?: boolean;
};
export declare const LocaleContextKey: InjectionKey<ComputedRef<LocaleContextProps>>;
