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 { WebhooksSigningSecretResponse } from "./WebhooksSigningSecretResponse.js"; export declare const HandlerEnvelopeWebhooksSigningSecretResponse: core.serialization.ObjectSchema; export declare namespace HandlerEnvelopeWebhooksSigningSecretResponse { interface Raw { data?: WebhooksSigningSecretResponse.Raw | null; error?: HandlerApiError.Raw | null; meta?: HandlerResponseMeta.Raw | null; success?: boolean | null; } }