import { ClassTransformOptions, ClassConstructor } from '../interfaces'; /** * Return the class instance only with the exposed properties. * * Can be applied to functions and getters/setters only. */ export declare function TransformPlainToInstance(classType: ClassConstructor, params?: ClassTransformOptions): MethodDecorator;