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