import { IMutable, Init, IStatic, Size, Slope, Weight } from "./IText"; import Type from "./Type"; export * from "./IText"; export declare class Generic implements IMutable { readonly type: Type.Text; text: string; localizedText: string | undefined; size: Size; weight: Weight; slope: Slope; constructor(init: Init); } export declare class Text extends Generic<{}> { } export declare const klass: IStatic; export default Text;