import { FC } from 'react'; import { DiffLog, LogEntity } from './type'; export declare const SummaryCodeMap: { [key: string]: { color: string; message: string; }; }; export type CompareResultDetail = { id: string; categoryName: string; operationName: string; diffResultCode: number; logInfos: DiffLog[] | null; exceptionMsg: string | null; baseMsg: string; testMsg: string; }; export interface DiffPathViewerProps { operationId: string; appId: string; loading?: boolean; data?: CompareResultDetail; diffPath?: LogEntity[]; height?: string; defaultActiveFirst?: boolean; requestQueryLogEntity: (params: { compareResultId: string; logIndex: number; }) => Promise; requestIgnoreNode: (path: string[]) => Promise; onIgnoreKey?: (key: string[]) => void; onSortKey?: (key: string[]) => void; } declare const DiffPathViewer: FC; export default DiffPathViewer;