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