import { PropertyParserRangeDecorator } from './property-parser.range.abstract.decorator';
import { PropertyParser, Range } from '../types';
export declare class PropertyParserArrayRangeDecorator<T> extends PropertyParserRangeDecorator<T[]> {
    constructor(data: {
        range: Partial<Range>;
        parser: PropertyParser<T[]>;
    });
    protected checkIfMoreThan(value: T[], min: number): boolean;
    protected checkIfLessThan(value: T[], max: number): boolean;
}
