import { InjectionKey } from 'vue';
import { LinkConfigT, LanguageConfigT } from './types';
export declare const configProviderInjectKey: InjectionKey<{
    locale?: LanguageConfigT;
    link?: LinkConfigT;
}>;
