export interface DeployOptions { directory: string; target?: 'web' | 'ios' | 'android'; verbose?: boolean; ssr?: boolean; cwd: string; } /** * Deploy command: Upload pre-built assets from a directory to Zephyr. This is similar to * the standalone zephyr-cli tool. */ export declare function deployCommand(options: DeployOptions): Promise;