import { PropertyParser } from '../types';
import { PropertyParserAbstract } from './property-parser.abstract';
export declare class PropertyParserArray<T> extends PropertyParserAbstract<T[]> {
    private readonly parser;
    constructor(parser: PropertyParser<T>);
    parse(value: unknown): T[];
}
