import { ValueGroup as ValueGroupProto } from "typedb-protocol/proto/answer"; import { ValueGroup } from "../../api/answer/ValueGroup"; import { Concept } from "../../api/concept/Concept"; import { Value } from "../../api/concept/value/Value"; export declare class ValueGroupImpl implements ValueGroup { private readonly _owner; private readonly _value; constructor(owner: Concept, value: Value); get owner(): Concept; get value(): Value | null; } export declare namespace ValueGroupImpl { function of(valueGroupProto: ValueGroupProto): ValueGroupImpl; }