import type { Class, QueryResolveTree, SelectRelation } from '@ptc-org/nestjs-query-core'; export interface GraphQLResolveInfoResult { /** * @internal this implementation is not final and subjected to change! Use at own risk! */ info?: QueryResolveTree; /** * @internal this implementation is not final and subjected to change! Use at own risk! */ relations?: SelectRelation[]; } /** * @internal this implementation is not final and subjected to change! Use at own risk! */ export declare const GraphQLResultInfo: (DTOClass: Class) => ParameterDecorator;