import Addon from './addon.js';
import type ChainableCommand from './chainable_command.js';
import type { CommandOptions } from '../types.js';
declare class ChainableBinAfterCustomCommand extends Addon {
    command(name: string, description: string, options?: Omit<CommandOptions, 'name' | 'description'>): ChainableCommand;
    run(argv?: string[]): Promise<void>;
}
export default ChainableBinAfterCustomCommand;
