import { ICommand } from '@nestjs/cqrs'; import { IRequestScopedBag } from '../../infrastructure/environment'; export declare class CommandBase implements ICommand { private readonly context; constructor(context: IRequestScopedBag); getContext(): IRequestScopedBag; }