export interface PublishOptions {
    readonly bump?: string;
    readonly cliName?: string;
    readonly newVersion?: string;
    readonly otp?: string;
    readonly packageManager?: string;
    readonly private?: boolean;
    readonly quiet?: boolean;
    readonly tag?: string;
}
export type PublishCallback = typeof process.exit;
export declare const publish: (cmd: PublishOptions, callback?: PublishCallback) => Promise<number>;
