import { BaseConfig } from "../base/BaseConfig";
import { TextStyle } from "../common";
export interface TextConfig extends BaseConfig {
    text?: string;
    textAlign?: string;
    isWordWrap?: boolean;
    autoWidth?: boolean;
    autoHeight?: boolean;
    textStyle?: TextStyle;
    isShow?: boolean;
}
//# sourceMappingURL=TextConfig.d.ts.map