import type { ResolvedCliOptions } from '../utils/config/cli-options';
import type { Token } from './hub-communication';
/** Publish command action options */
export type PublishCommandActionOptions = {
    hubManager: {
        /** The authentication token issued by the hub manager */
        channels?: string[];
    };
    hubConsole: {
        autoApprove?: boolean;
        channelId?: string;
    };
    token: Token;
    /** Path to a file containing the release notes */
    releaseNotesFile?: string | undefined;
    appSigning?: true;
};
/** The publish command */
export declare function publish(options: ResolvedCliOptions & PublishCommandActionOptions, shouldBuild: boolean): Promise<void>;
