// Copyright (c) 2026 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT /// /** * A single-line text element. Extends UIElement -- x/y/worldX/worldY/ * parent/render()/dispose() all work the same way. */ declare class Label extends UIElement { constructor(); /** Display text. Rebuilds the label's glyph cache on assignment. */ text: string; }