import type { UnknownRestBinding } from '../rest-bindings.ts'; export declare function jsonResponse(body: unknown, status?: number): Response; export declare function negotiatedResponse(request: Request, body: unknown, status?: number): Response; export declare function errorResponse(message: string, status: number): Response; export declare function defaultShapeSuccess(value: unknown, shape: UnknownRestBinding['success']): Response;