export declare const devCommand: import("citty").CommandDef<{ readonly 'original-prompt': { readonly type: "string"; readonly description: string; }; readonly port: { readonly type: "string"; readonly description: `Port to serve the game on (default ${number}, or ${number} on the dev line).`; }; readonly 'editor-port': { readonly type: "string"; readonly description: `Port to serve the Game/Editor view on (default ${number}, or ${number} on the dev line).`; }; readonly 'no-open': { readonly type: "boolean"; readonly description: "Do not open a browser. Same as setting BITMAGIC_NO_OPEN."; }; readonly mobile: { readonly type: "boolean"; readonly description: "Also serve the game to phones on this network, and print a QR code for it."; }; readonly 'mobile-http': { readonly type: "boolean"; readonly description: "Serve --mobile over http instead of a self-signed certificate (no WebGPU on the device)."; }; }>;