import { FastifyInstance, FastifyServerOptions } from 'fastify'; import './type-extensions'; import { type MapServerOptions } from './api'; declare function createServer(fastifyOpts: FastifyServerOptions | undefined, mapServerOpts: MapServerOptions): FastifyInstance; export default createServer; export { type MapServerOptions };