export interface HttpErrorOptions { cause?: unknown; headers?: Record; body?: unknown; } export declare class HttpError extends Error { readonly status: number; readonly headers: Record; readonly body?: unknown; constructor(status: number, message?: string, options?: HttpErrorOptions); get statusCode(): number; } export declare function isHttpError(value: unknown): value is HttpError; //# sourceMappingURL=errors.d.ts.map