import { IconType } from './icon-types';
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
export declare class Icon {
    private sanitizer;
    protected _icon: IconType;
    content: SafeHtml;
    baseClass: boolean;
    accessibilityLabel: string;
    size: 16 | 20 | 24 | 32;
    icon: IconType;
    constructor(sanitizer: DomSanitizer);
    private getIconDef;
}
