import { PropertyParserAbstract } from './property-parser.abstract';
import { ClassType } from '../_types';
export declare class PropertyParserDto<T> extends PropertyParserAbstract<T> {
    private readonly _dtoClass;
    constructor(_dtoClass: ClassType<T>);
    parse(value: unknown): T;
}
