import { TranslateLoader } from '@ngx-translate/core'; import { Observable } from 'rxjs'; interface ITranslationResource { prefix: string; suffix: string; } export declare class MultiTranslateHttpLoader implements TranslateLoader { private resources; private readonly http; constructor(resources: ITranslationResource[]); getTranslation(lang: string): Observable; } export {};