import { TranslateLoader } from '@ngx-translate/core'; import { Observable } from 'rxjs'; import { LessifyTranslationService } from '../services/translation.service'; export declare class LessifyNgxTranslateHttpLoader implements TranslateLoader { private translationService; constructor(translationService: LessifyTranslationService); /** * Gets the translations from the server */ getTranslation(lang: string): Observable; }