import { ComponentFactoryResolver, ViewContainerRef, OnInit, OnDestroy } from "@angular/core"; import { PrintService } from "../../print.service"; import { Print } from "../../classes/print"; import { PrintParamsData } from "../../print.interface"; export declare class PrintWrapperComponent implements OnInit, OnDestroy { private _printService; private _compiler; content: ViewContainerRef; constructor(_printService: PrintService, _compiler: ComponentFactoryResolver); private _subscriptions; printInstance: Print; printing: boolean; readonly params: PrintParamsData; ngOnInit(): void; ngOnDestroy(): void; private _prepare; }