import { Command } from '@oclif/command';
export default class Request extends Command {
    static description: string;
    static flags: {
        reset: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
    };
    run(): Promise<void>;
}
