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