import { Command } from '@oclif/core';
import { BumpApi } from './api/index.js';
export declare abstract class BaseCommand<T extends typeof Command> extends Command {
    protected _bump: BumpApi;
    protected get bump(): BumpApi;
    protected d(formatter: any, ...args: any[]): void;
}
