import { DataProperty, NormalizedDataProperty } from '../data-property';
import { Normalized } from '@rxap/utilities';
export interface DtoClassProperty extends DataProperty {
    /**
     * indicates that the @Type decorator should be used as the type of the property is another dto class
     */
    isType?: boolean;
}
export interface NormalizedDtoClassProperty extends Normalized<Pick<DtoClassProperty, 'isType'>>, NormalizedDataProperty {
}
export declare function NormalizeDataClassProperty(property: DtoClassProperty): NormalizedDtoClassProperty;
