import type * as HydraDB from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { GraphSourceSubgraphResponse } from "./GraphSourceSubgraphResponse.js"; import { HandlerApiError } from "./HandlerApiError.js"; import { HandlerResponseMeta } from "./HandlerResponseMeta.js"; export declare const HandlerEnvelopeGraphSourceSubgraphResponse: core.serialization.ObjectSchema; export declare namespace HandlerEnvelopeGraphSourceSubgraphResponse { interface Raw { data?: GraphSourceSubgraphResponse.Raw | null; error?: HandlerApiError.Raw | null; meta?: HandlerResponseMeta.Raw | null; success?: boolean | null; } }