import { Type } from '@nestjs/common'; import { Operator } from '../Operator'; export type QueryPropertyItem = { key: string | symbol; type: Type; operators: Operator[]; }; export type QueryPropertyDecoratorOptions = { operators?: Operator[]; }; declare function QueryPropertyDecorator(options?: QueryPropertyDecoratorOptions): PropertyDecorator; export declare const QueryProperty: typeof QueryPropertyDecorator & { getKeys(target: object): Array; }; export {};