import { ConfigYaml, RemoteUser } from '@verdaccio/types';
declare function startServer(config: ConfigYaml): Promise<any>;
declare module 'fastify' {
    interface FastifyRequest {
        userRemote: RemoteUser;
    }
}
export default startServer;
