import { Type } from '@angular/core'; export type SzIconType = Type | SzIcon | SzIconDef | undefined; export interface SzIconDef { height: string; width: string; path: string; viewBox: string; fill?: string; } export declare abstract class SzIcon implements SzIconDef { height: string; width: string; path: string; viewBox: string; }