import { BaseCommand } from '@adonisjs/core/ace'; export default class AdowireDelete extends BaseCommand { static commandName: string; static description: string; static options: { allowUnknownFlags: boolean; }; name: string; force: boolean; run(): Promise; }