import { BaseCommand } from '@adonisjs/core/build/standalone'; export default class ReplCommand extends BaseCommand { static commandName: string; static description: string; static settings: { loadApp: boolean; environment: "repl"; stayAlive: boolean; }; run(): Promise; }