interface DevConfig { appDir: string; port: number; host: string; } export declare function startDevServer(config: DevConfig): Promise; export {};