import { OnInit, ChangeDetectorRef } from '@angular/core'; import { AuthService } from '@schoolbelle/api/auth'; export declare class TranslationViewerComponent implements OnInit { protected auth: AuthService; protected cdRef: ChangeDetectorRef; protected locale_id: string; protected _content: { [lang: string]: string; }; content: string | { [lang: string]: string; }; query: string; protected _lang: string; lang: string; readonly text: string; constructor(auth: AuthService, cdRef: ChangeDetectorRef, locale_id: string); inited: boolean; ngOnInit(): void; }