import { Response as Response$1 } from 'express'; import { FastifyReply } from 'fastify'; import { Response } from '../../interface/response.interface.js'; declare function isResponse(response: unknown): response is Response; declare function isFastifyResponse(response: unknown): response is FastifyReply; declare function isExpressResponse(response: unknown): response is Response$1; export { isExpressResponse, isFastifyResponse, isResponse };