import '@arextest/vanilla-jsoneditor/themes/jse-theme-dark.css'; import { FC } from 'react'; import { LogEntity } from '../DiffPath/type'; export type DiffJsonViewProps = { height?: string | number; hiddenTooltip?: boolean; diffJson?: { left: string; right: string; }; diffPath?: LogEntity[]; remark?: [string, string]; onIgnoreKey?: (key: string[]) => void; onSortKey?: (key: string[]) => void; }; declare const DiffJsonView: FC; export default DiffJsonView;