import { CommandRunner } from 'nest-commander';
import { TenantService } from '../tenant.service';
import 'dotenv/config';
export declare class TenantMigrationCommand extends CommandRunner {
    private readonly tenantService;
    private readonly logger;
    constructor(tenantService: TenantService);
    run(passedParams: string[], options?: Record<string, any>): Promise<void>;
}
