/** * Error → HTTP status code mapping. * Used by the Fastify error handler to set response status before sending body. */ export interface MappedError { status: number; code: string; } export declare function mapErrorToStatus(error: Error | unknown): MappedError; //# sourceMappingURL=error-mapping.d.ts.map