import { OnInit } from '@angular/core'; import { CaseView, CasePrintDocument } from '../../../domain'; import { CaseService, CasesService } from '../../case-editor'; import { AlertService } from '../../../services'; export declare class CasePrinterComponent implements OnInit { private caseService; private casesService; private alertService; private static readonly ERROR_MESSAGE; caseDetails: CaseView; documents: CasePrintDocument[]; constructor(caseService: CaseService, casesService: CasesService, alertService: AlertService); ngOnInit(): void; isDataLoaded(): boolean; }