import { OnInit } from '@angular/core'; import * as i0 from "@angular/core"; declare enum TextTypes { REGULAR = "regular", BOLD = "bold" } declare enum TextVariants { SPAN = "span", PARAGRAPH = "p", H1 = "h1", H2 = "h2", H3 = "h3", H4 = "h4", H5 = "h5", H6 = "h6" } declare enum TextColors { PRIMARY = "primary", SECONDARY = "secondary", SUCCESS = "success", DANGER = "danger", WARNING = "warning", INFO = "info", SURFACE = "surface" } export declare class TextComponent implements OnInit { size: number; color: TextColors | string; type: TextTypes | string; variant: TextVariants | string; classList: string[]; get TextColors(): typeof TextColors; get TextTypes(): typeof TextTypes; get TextVariants(): typeof TextVariants; constructor(); ngOnInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};