import { DiffKind } from "../interfaces/DiffKind"; import IDiffPhrase from "../interfaces/IDiffPhrase"; import { GraphItem } from "./GraphItem"; export declare class KeyValuePhrase implements IDiffPhrase, GraphItem { diffKind?: DiffKind; phrase: string; constructor(key: string, value: string | number, diffKind?: DiffKind); graphId: string; }