import { PropertyData } from '../types';
import { ClassType } from '../_types';
/**
 * Decorator to define a property that is a DTO.
 * @param _dtoClass The DTO class to use to parse the value.
 * @param data Additional data for the property.
 * @constructor
 */
export declare function DtoProperty<T>(_dtoClass: ClassType<T>, data?: PropertyData<T>): (target: any, propertyKey: string) => void;
