import BaseCommand from '../base-command';
declare class SubscriptionsCommand extends BaseCommand<typeof SubscriptionsCommand> {
    static description: string;
    run(): Promise<void>;
    private listProviders;
}
export default SubscriptionsCommand;
