import AbstractCommand from '../modules/AbstractCommand.ts'; declare class DropIndex extends AbstractCommand { static get description(): string; /** * You able to add command arguments for parsing there. */ static get commandArguments(): { model: { type: "string"; description: string; required: boolean; }; }; run(): Promise; } export default DropIndex;