import { ChildProcess } from 'child_process'; import { ExitFunction } from '../../types/Yargs.js'; interface DevServerOptions { absoluteSrc: string; accountName?: string; noSsl?: boolean; port?: number; generateFieldsTypes?: boolean; resetSession?: boolean; dest: string; exit: ExitFunction; } export declare function spawnDevServer(options: DevServerOptions): Promise; export {};