import { Text } from '@thegraid/easeljs-module'; /** * Text with textAlign = 'center'; textBaseline = 'middle'. */ export declare class CenterText extends Text { static defaultSize: number; /** * Text with textAlign = 'center'; textBaseline = 'middle'. * @param text * @param font simple size OR F.Fontspec(size, fam_wght, wght, style) * @param color */ constructor(text?: string, font?: number | string, color?: string); }