import { ViteDevServer } from 'vite';

declare let viteServer: ViteDevServer;
declare const port = 5173;
declare const hmrPort = 24685;
declare function serve(): Promise<{
    close(): Promise<void>;
}>;

export { hmrPort, port, serve, viteServer };
