import { ElementRef } from '@angular/core'; import { GasIcon } from './gas-icon.namespace'; /** * @description Component for icons * @description For use just add input 'name' and set icon name * @description Icon name you can find in GasIcon namespace * @description Inputs: * @description name - name of icon, can find in GasIcon namespace * @description size - combine of width and height * @description color - color of icon * @example * @see https://conf.gas20.ru/display/FRON/Icons */ export declare class GasIconComponent { el: ElementRef; /** * @description Icon name you can find in GasIcon namespace */ name: string | GasIcon.Icons; /** * @description Combine of width and height */ set size(size: number); /** * @description Color of icon */ color: string; /** @deprecated */ set iconName(iconName: string | GasIcon.Icons); /** @deprecated */ set variant(variant: string); /** @deprecated */ alternativeText: string; /** @deprecated */ svgClass: string; width: number; height: number; constructor(el: ElementRef); get absUrl(): string; }