import { Command } from '@oclif/core';
export default class All extends Command {
    static description: string;
    forEachAsync(arr: any[], cb: (predicate: any, idx: number, arr: any[]) => any): Promise<void>;
    run(): Promise<void>;
}
