import { Command as Base } from '@oclif/core';
import { APIClient } from './api-client.js';
export declare abstract class Command extends Base {
allowArbitraryFlags: boolean;
_heroku: APIClient;
get heroku(): APIClient;
protected parse(options?: any, argv?: string[]): Promise<any>;
}