import { AfterViewInit, ElementRef, OnChanges, OnInit, SimpleChanges } from "@angular/core"; import { UpdateHostClassService } from "../services/update-host-class.service"; export declare class TypographyComponent implements OnInit, AfterViewInit, OnChanges { private _updateHostClassService; private _el; type: "large" | "title1" | "title2" | "title3" | "headline" | "body" | "subHeadline" | "small" | "input" | "caption"; constructor(_updateHostClassService: UpdateHostClassService, _el: ElementRef); ngOnInit(): void; private updateClass; ngOnChanges(changes: SimpleChanges): void; ngAfterViewInit(): void; }