import type { FC } from 'react';
interface TextProps {
    /**
     * 字段数据源
     */
    value?: any;
    /**
     * 字段编码
     */
    attrCode: string;
    /**
     * 应用ID
     */
    appId: string;
    /**
     * 所展示表单数据的表单DSL数据，JSON字符串
     */
    dsl: string;
    getEngineApis: any;
}
declare const Text: FC<TextProps>;
export default Text;
