import { AxiosResponse } from 'axios';
import CommandBase from '../../command.base.js';
export default class DownloadJmeter extends CommandBase<typeof DownloadJmeter> {
    static description: string;
    static usage: string;
    static examples: string[];
    static flags: {
        output: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
    };
    private readonly url;
    downloadFile(): Promise<AxiosResponse<any, any>>;
    run(): Promise<void>;
}
