import { TextSettings } from '../structs/TextSettings';
import { GameObject } from './GameObject';
export declare class TextGameObject extends GameObject {
    style: TextSettings | undefined;
    set text(content: string);
}
