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