import Style from "../../Style"; import ControlElement from "./ControlElement"; import { ComponentFactory, ValueOrAsync } from "../ComponentFactory"; import TextLabelFactory from "../TextLabelFactory"; /** Represents a minimal text control with icon and badge */ export declare class Label extends ControlElement { /** Create a label element */ constructor(text?: string | TextLabelFactory, icon?: string, remGutter?: number, badge?: string | TextLabelFactory); /** Initialize a text control factory with given values */ static with: (values: Label.Initializer) => ComponentFactory