interface ConfigInterface {
    langDirname?: string;
    typeDestinationPath?: string;
    typeTranslationKeys?: boolean;
}
/**
 *
 */
export default function i18n(config?: ConfigInterface): {
    name: string;
    enforce: string;
    config(): void;
    buildEnd: () => void;
    handleHotUpdate(ctx: any): void;
    configureServer(): void;
};
export {};
