import { DiffKind } from "../interfaces/DiffKind"; import IDiffPhrase from "../interfaces/IDiffPhrase"; import { GraphItem } from "./GraphItem"; declare type ValueType = string | number; export declare class ValuePhrase implements IDiffPhrase, GraphItem { private _phrase; diffKind?: DiffKind; phrase: any; constructor(_phrase: ValueType, diffKind?: DiffKind); graphId: string; } export {};