import type { BundleReleaseTypeOptions } from '../schemas/bundle'; interface ReleaseTypeResult { releaseType: 'native' | 'OTA'; resolvedAppId: string; channel: string; } /** * Determine whether a native build or OTA update is recommended. */ export declare function getReleaseType(appId: string, options: BundleReleaseTypeOptions): Promise; /** * Print the recommended release type and the relevant CLI commands. */ export declare function printReleaseType(appId: string, options: BundleReleaseTypeOptions): Promise; export {};