import { type Platform } from "@hot-updater/plugin-core";
export interface DeployOptions {
    bundleOutputPath?: string;
    channel: string;
    forceUpdate: boolean;
    interactive: boolean;
    message?: string;
    platform?: Platform;
    targetAppVersion?: string;
}
export declare const deploy: (options: DeployOptions) => Promise<void>;
