import { Location } from 'vscode-languageserver'; import { Server } from '../..'; declare type Translations = { locale: string; text: string; location?: Location; }; declare type TranslationsHashMap = Record; declare type EmberIntlConfig = { wrapTranslationsWithNamespace?: boolean; }; export declare function getEmberIntlConfig(root: string): EmberIntlConfig | null; export declare function getTranslations(root: string, server: Server): Promise; export {};