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 { HandlerErrorDetail } from "./HandlerErrorDetail.js"; import { HandlerErrorMeta } from "./HandlerErrorMeta.js"; export declare const HandlerErrorResponse: core.serialization.ObjectSchema; export declare namespace HandlerErrorResponse { interface Raw { data?: unknown | null; detail?: HandlerErrorDetail.Raw | null; error?: HandlerApiError.Raw | null; meta?: HandlerErrorMeta.Raw | null; success?: boolean | null; } }