import { PropertyParserAbstract } from './property-parser.abstract';
export declare class PropertyParserDate extends PropertyParserAbstract<Date> {
    parse(value: unknown): Date;
}
