import { Type } from "@nestjs/common"; export declare class DecoratorUtils { static registerMethodDecorator(type: Type): (options?: T) => MethodDecorator; static registerClassDecorator(type: Type, metadata: T): ClassDecorator; static registerPropertyDecorator(type: Type, metadata: T): PropertyDecorator; static getMethodDecorator(type: Type, target: Function): T | undefined; static getClassDecorator(type: Type, target: Type): TResult | undefined; static getPropertyDecorators(type: Type, target: Type): Record; }