import 'reflect-metadata'; import { IQuery } from '../interfaces'; import { Type } from '@nestjs/common'; /** * Decorator that marks a class as a Nest query handler. A query handler * handles queries executed by your application code. * * The decorated class must implement the `IQueryHandler` interface. * * @param query query *type* to be handled by this handler. * * @see https://docs.nestjs.com/recipes/cqrs#queries */ export declare const QueryHandler: (query: Type) => ClassDecorator;