export interface TextProps {
    name: string;
    label: string;
    rules?: any[];
    placeholder?: string;
    fieldAttr?: string[];
    initialValue?: any[];
    fieldDes?: string;
    idenTemplate?: string;
    fieldMapping: any;
    disabled?: boolean;
    $$componentItem: {
        platform: 'h5' | 'pc';
        Field?: any;
        [key: string]: any;
    };
    basicStatus?: string;
    visible?: boolean;
}
