import { PropertyParserAbstract } from './property-parser.abstract';
import { PropertyParser } from '../types';
export declare class PropertyParserStringRegexDecorator extends PropertyParserAbstract<string> {
    private readonly regex;
    private readonly parser;
    constructor(regex: RegExp, parser: PropertyParser<string>);
    parse(value: unknown): string;
}
