import { ElementRef, SimpleChanges } from '@angular/core'; import { MatIcon } from '@angular/material'; export declare class SmartStyle { icon?: string; img?: string; css_class?: string | string[]; text_styles?: any; icon_styles?: any; clickable?: boolean; } /** * Inline component to show a text label with an optional icon. *
* Useful to apply standardized styles across multiple components whilest keeping central control. */ export declare class StyledSpan { /** * The visual style to apply. * */ style: SmartStyle; span: ElementRef; icon: MatIcon; text: ElementRef; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; apply(style: SmartStyle): void; }