import type * as HydraDB from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { GraphEntity } from "./GraphEntity.js"; import { GraphRelationEvidence } from "./GraphRelationEvidence.js"; export declare const GraphTripletWithEvidence: core.serialization.ObjectSchema; export declare namespace GraphTripletWithEvidence { interface Raw { chunk_id?: string | null; relations?: GraphRelationEvidence.Raw[] | null; source?: GraphEntity.Raw | null; target?: GraphEntity.Raw | null; truncated?: boolean | null; } }