export default StatusInfo; /** * - 奥创组件数据 */ export type UltronProps = { /** * - 组件实例数据 */ componentData: any; /** * - 异步提交 */ onChange: Function; /** * - 外层异步提交 */ onChangeData: Function; /** * - 表单提交 */ onSubmit: Function; /** * - 定制点 */ customization: any; /** * - 表单数据 */ fields: Fields; /** * - uuid */ uuid: string; /** * - events */ events: any; }; /** * - 可选列表配置 */ export type Fields = { /** * - 状态文案 */ text: string; /** * - 状态提示 */ memo: string; /** * - 时间戳 */ time: string | number; /** * - 时间戳前缀文案 */ timePrefix: string; /** * - 状态图片 */ flagPic: string; /** * - 状态背景 */ type: string; }; /** * 奥创组件协议传入类型 * @typedef {Object} UltronProps - 奥创组件数据 * @property {Object} componentData - 组件实例数据 * @property {Function} onChange - 异步提交 * @property {Function} onChangeData - 外层异步提交 * @property {Function} onSubmit - 表单提交 * @property {Customization} customization - 定制点 * @property {Fields} fields - 表单数据 * @property {String} uuid - uuid * @property {Object} events - events * * @typedef {Object} Fields - 可选列表配置 * @property {String} text - 状态文案 * @property {String} memo - 状态提示 * @property {String|Number} time - 时间戳 * @property {String} timePrefix - 时间戳前缀文案 * @property {String} flagPic - 状态图片 * @property {String} type - 状态背景 * * @param {UltronProps} props */ declare function StatusInfo(props: UltronProps): JSX.Element;