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