import * as oclif from "@oclif/command"; export default class Foreach extends oclif.Command { static description: string; static examples: never[]; static flags: { clientJS: oclif.flags.IOptionFlag; }; static args: { name: string; description: string; }[]; run(): Promise; }