import { FC } from 'react'; import { DiffPathTooltipProps } from './DiffPathTooltip'; import { CompareResultDetail, DiffPathViewerProps } from './DiffPathViewer'; import { infoItem } from './type'; export interface DiffPathProps extends Pick { mode?: DiffPathTooltipProps['mode']; appId: string; operationId: string; loading?: boolean; defaultOnlyFailed?: boolean; requestDiffMsg: (params: any) => Promise; data: infoItem[]; onIgnoreKey?: (key: string[]) => void; onSortKey?: (key: string[]) => void; } declare const DiffPath: FC; export default DiffPath;