export type Token = `Bearer ${string}`;
/** Uploads an app to the hub console */
export declare function uploadAppToHubConsole(options: {
    appId: string;
    version: string;
    token: Token;
    autoApprove?: boolean;
    channelId?: string;
    artifact: Buffer;
    releaseNotes?: Buffer;
    hubConsoleBaseUrl: string;
}): Promise<string>;
