import { Attributes, Component } from 'jinge'; export interface IconAttrs { size?: number | string; cache?: boolean; src?: string; } export declare class Icon extends Component { static template: string; cache: boolean; _src: string; size: number | string; constructor(attrs: Attributes); get src(): string; set src(v: string); _loadSvg(): void; _renderSvg(svg: string): void; __afterRender(): void; }