import { PropertyParser } from '../types';
export declare abstract class PropertyParserAbstract<T> implements PropertyParser<T> {
    private readonly _uuid;
    get uuid(): string;
    abstract parse(value: unknown): T;
}
