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