import type { ServerResponse } from "node:http"; import type { VaulxError } from "../errors.js"; export declare function jsonResponse(res: ServerResponse, status: number, data: unknown): void; export declare function htmlResponse(res: ServerResponse, html: string): void; export declare function errorResponse(res: ServerResponse, error: VaulxError, status?: number): void; //# sourceMappingURL=error.d.ts.map