import type { Command } from 'commander'; import { ProjectSettings } from 'xdl'; export declare type URLOptions = { devClient?: boolean; android?: boolean; ios?: boolean; web?: boolean; scheme?: string; host?: 'lan' | 'tunnel' | 'localhost'; tunnel?: boolean; lan?: boolean; localhost?: boolean; }; declare function addOptions(program: Command): void; declare function optsAsync(projectRoot: string, options: any): Promise; declare function printQRCode(url: string): void; declare function handleMobileOptsAsync(projectRoot: string, options: Pick & { webOnly?: boolean; }): Promise; declare const _default: { addOptions: typeof addOptions; handleMobileOptsAsync: typeof handleMobileOptsAsync; printQRCode: typeof printQRCode; optsAsync: typeof optsAsync; }; export default _default;