import { ICommand } from '@nestjs/cqrs'; export declare class FeatureUpgradeCommand implements ICommand { readonly input: string; static readonly type = "[Feature] Upgrade"; constructor(input: string); }