import { QueryOptions, ReturnTypeFunc } from '@nestjs/graphql'; import { ResolverMethodOpts } from './resolver-method.decorator'; /** * @internal * Decorator for a graphql `query` endpoint. * @param typeFunc - A function that returns the return type for the query. * @param options - `@nestjs/graphql` options to apply to the mutation. * @param opts - [[ResolverMethodOpts]] to apply to the mutation */ export declare function ResolverQuery(typeFunc: ReturnTypeFunc, options?: QueryOptions, ...opts: ResolverMethodOpts[]): MethodDecorator;