import { Command, flags } from '@oclif/command';
export default class DevRetrieve extends Command {
    static description: string;
    static aliases: string[];
    static flags: {
        help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
        username: flags.IOptionFlag<string | undefined>;
        file: flags.IOptionFlag<string | undefined>;
    };
    static args: {
        name: string;
    }[];
    run(): Promise<void>;
}
