import { Icon as IIcon } from "../response.js"; import { Component } from "../../components/component.js"; export { IIcon }; export declare class IconBaseImpl extends Component { /** * The size of the Icon */ size(size: IIcon['size']): this; /** * The color of the Icon. If not set or null, the color is inherited from the theme. */ color(color: IIcon['color']): this; /** * The semantic label for the Icon. This will be announced when using accessibility mode. */ semanticLabel(semanticLabel: IIcon['semanticLabel']): this; style(style: IIcon['style']): this; }