import { HttpClient } from '@angular/common/http'; import { WritableSignal } from '@angular/core'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export interface Translation { [key: string]: any; } export declare class TranslationService { /** * Http of translation service */ http: HttpClient; /** * Translations of translation service */ translations: WritableSignal; /** * Loads translations * @returns Observable */ loadTranslations(): Observable; /** * Gets translation * @template T * @param {string} key * @returns T */ getTranslation(key: string): T; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }