import type { Response } from '@ms-cloudpack/create-express-app'; /** * Log response info to the console. Will use console.debug for success/redirect, console.error for error. */ export declare function logResponse(params: { status: number; requestPath: string; message?: string; /** Console method (could add others as needed) */ level?: 'error' | 'debug'; }): void; /** * Log the error to the console and send a plain-text error response. */ export declare function sendErrorResponse(params: { res: Response; status: number; requestPath: string; /** Message to send. `&`, `<`, `>` will be HTML-escaped. */ message: string; consoleMessage?: string; consoleDetails?: string; }): void; //# sourceMappingURL=responseHelpers.d.ts.map