import type { OptionsUpload } from './upload_interface';
/**
 * `bundle upload` command handler. Uploads the bundle, then — when the bundle is
 * incompatible and the user opted into Capgo Builder — launches the Ink-based
 * build flow. Kept out of `upload.ts` so the programmatic SDK bundle (which
 * imports `uploadBundleInternal`) never statically pulls in `ink`.
 */
export declare function handleBundleUploadCommand(appId: string, options: OptionsUpload): Promise<void>;
