///
import { FastifyInstance, FastifyReply, FastifyRequest } from 'fastify';
import { Server as HttpServer, IncomingMessage, ServerResponse } from 'http';
export declare type Server = FastifyInstance;
export declare type Request = FastifyRequest;
export declare type Reply = FastifyReply;
export declare type DoneFunction = (err?: Error) => void;