export declare type Lang = string; export declare type Translation = { /** Variables used in template interpolation */ vars?: { /** id to notes about usage */ [id: string]: string; }; } & { [lang in Lang]?: string; }; export declare type TranslationModule = { [id: string]: { [variant: string]: Translation; }; };