import { BaseCommand } from '@adonisjs/core/ace'; import type { CommandOptions } from '@adonisjs/core/types/ace'; export default class QueueSchedulerRemove extends BaseCommand { static commandName: string; static description: string; static options: CommandOptions; id: string; run(): Promise; }