import { BaseCommand } from '@adonisjs/core/ace';
import { CommandOptions } from '@adonisjs/core/types/ace';
export default class GenerateSwaggerFile extends BaseCommand {
    /**
     * The name of the command
     */
    static commandName: string;
    /**
     * The command description to show on the help
     * screen
     */
    static description: string;
    /**
     * Configuration options accepted by the command
     */
    static options: CommandOptions;
    /**
     * Execute command
     */
    run(): Promise<void>;
}
