import { Command, flags } from "@oclif/command";
export default class Run extends Command {
    static description: string;
    static strict: boolean;
    static flags: {
        interactive: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        tty: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        volume: flags.IOptionFlag<string[]>;
    };
    static usage: string;
    static examples: string[];
    run(): Promise<void>;
}
