import type { APILabelComponent, ComponentType } from '../types'; import { BaseComponent } from './BaseComponent'; export declare class LabelComponent extends BaseComponent { constructor(data: APILabelComponent); get label(): string; get description(): string | undefined; get component(): import(".").AllComponents; }