/**
* @file start server
* @author cxtom
*/
///
import { FastifyBaseLogger, RouteOptions } from 'fastify';
declare module 'fastify' {
interface FastifyInstance {
readonly $addedRoutes: RouteOptions[];
}
}
export declare function start(args: string[]): Promise, import("http").IncomingMessage, import("http").ServerResponse, FastifyBaseLogger, import("fastify").FastifyTypeProviderDefault>>;
export declare function cli(args: string[]): void;