import { RequestListener } from "http"; type Output = (options: object) => Promise; type FastifyBuilder = (options: object) => any; declare const fastifyHandler: (fastifyBuilder: FastifyBuilder) => Output; export default fastifyHandler;