import React from 'react'; import { ILog } from '@/common/types'; import './Logs.less'; interface ILogConfig { operation?: string; render?: Function; transform?: Function; condition?: Function; hidden?: boolean; dontJudge?: boolean; } interface ILogTypeConfig { name?: string; create?: ILogConfig; update?: ILogConfig; delete?: ILogConfig; customRender?: Function; } export declare type IFieldMap = Map; interface Props { datalogs: ILog[]; expand: boolean; fieldsMap: IFieldMap; } declare const Logs: React.FC; export default Logs;