/** * Shared HTTP response helpers for dev handlers. * * Used by the dev dashboard and projects API handlers to build consistent * JSON responses with no-cache headers. * * @module server/handlers/dev/http-helpers */ export declare const JSON_HEADERS: { "Content-Type": string; "Cache-Control": string; }; /** Build a pretty-printed JSON `Response` with no-cache headers. */ export declare function jsonResponse(data: unknown, status?: number): Response; /** Build a JSON error `Response` of shape `{ error: message }`. */ export declare function errorResponse(message: string, status?: number): Response; //# sourceMappingURL=http-helpers.d.ts.map