import { UIElement, UIElementView } from "../ui_element"; import type * as p from "../../../core/properties"; export declare abstract class IconView extends UIElementView { model: Icon; connect_signals(): void; } export declare namespace Icon { type Attrs = p.AttrsOf; type Props = UIElement.Props & { size: p.Property; }; } export interface Icon extends Icon.Attrs { } export declare abstract class Icon extends UIElement { properties: Icon.Props; __view_type__: IconView; constructor(attrs?: Partial); } //# sourceMappingURL=icon.d.ts.map