import { IConRightRenderOp, IConRightRenderItemOp, BaseCon } from './BaseCon'; import { FlexProps } from 'naive-ui'; /** * 文字 */ export declare class Text extends BaseCon { /** 控件类型 */ static ConType: string; /** 控件名字 */ static ConName: string; /** 单例对象 */ static I: Text; props: { align: FlexProps["align"]; style: string; }; text: string; renderRaw(): import("vue/jsx-runtime").JSX.Element; getRight(op: IConRightRenderOp): IConRightRenderItemOp[]; }