import { CommandRunner } from 'nest-commander'; import { NestTypeOrmCommandsModuleOptions } from '../Configuration'; declare type Options = { timestamp?: string; }; export declare class MigrationCreate extends CommandRunner { private readonly migrationsDir; constructor(options: NestTypeOrmCommandsModuleOptions); run([name]: string[], { timestamp: timestampParam }: Options): Promise; parseTimestampOption(option: string): string; private getTemplate; } export {};