import { Command } from '@oclif/command';
export default class Open extends Command {
    static description: string;
    static aliases: string[];
    static examples: string[];
    static flags: {
        help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
    };
    static args: {
        name: string;
        required: boolean;
    }[];
    run(): Promise<void>;
}
