import { IQuery } from '@nestjs/cqrs'; import { IRequestScopedBag } from '../../infrastructure/environment'; export declare class QueryBase implements IQuery { protected context: IRequestScopedBag; readonly _context: IRequestScopedBag; constructor(context: IRequestScopedBag); getContext(): IRequestScopedBag; }