import type { Response } from "express"; export interface ErrorEnvelope { error: { code: string; message: string; retryable: boolean; }; } export declare function sendError(res: Response, status: number, code: string, message: string, retryable?: boolean): void; //# sourceMappingURL=httpError.d.ts.map