import type * as HydraDB from "../index.js"; export interface HandlerErrorResponse { data?: unknown; /** Structured error detail with code, message, and deprecation hints. */ detail?: HydraDB.HandlerErrorDetail; /** Error message, empty string on success. */ error?: HydraDB.HandlerApiError; meta?: HydraDB.HandlerErrorMeta; /** Whether the request succeeded. */ success?: boolean; }