import { Observable } from 'rxjs'; import { Translation, TranslocoLoader } from '@ngneat/transloco'; import { LessifyTranslationService } from '../services/translation.service'; export declare class LessifyTranslocoHttpLoader implements TranslocoLoader { private translationService; constructor(translationService: LessifyTranslationService); /** * Gets the translations from the server */ getTranslation(lang: string): Observable; }