import type { RuntimeErrorCode, StructuredOutputErrorCode } from './types'; export declare class OkraRuntimeError extends Error { readonly code: RuntimeErrorCode; readonly status: number; readonly details?: unknown; constructor(code: RuntimeErrorCode, message: string, status?: number, details?: unknown); } export declare class StructuredOutputError extends OkraRuntimeError { readonly code: StructuredOutputErrorCode; constructor(code: StructuredOutputErrorCode, message: string, status: number, details?: unknown); } //# sourceMappingURL=errors.d.ts.map