import type * as HydraDB from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { GraphSubgraphSource } from "./GraphSubgraphSource.js"; import { GraphTripletWithEvidence } from "./GraphTripletWithEvidence.js"; export declare const GraphSourceSubgraphResponse: core.serialization.ObjectSchema; export declare namespace GraphSourceSubgraphResponse { interface Raw { auxiliary_relations?: GraphTripletWithEvidence.Raw[] | null; auxiliary_truncated?: boolean | null; is_truncated?: boolean | null; max_depth_reached?: number | null; message?: string | null; relations?: GraphTripletWithEvidence.Raw[] | null; seed_source_id?: string | null; sources?: GraphSubgraphSource.Raw[] | null; success?: boolean | null; } }