export declare class TextComponent {
  private text;
  constructor(text?: string);
  create(): HTMLElement;
  setText(newText: string): void;
}
