import { BaseCommand } from '@adonisjs/core/ace';
import type { CommandOptions } from '@adonisjs/core/types/ace';
export default class StartQueue extends BaseCommand {
    static options: CommandOptions;
    /**
     * Command Name is used to run the command
     */
    static commandName: string;
    /**
     * Command Name is displayed in the "help" output
     */
    static description: string;
    /**
     * Name of queue to run
     */
    name: string;
    run(): Promise<void>;
}
