import { HasUuid } from '../_types';
/**
 * Property parser generic interface. Implementations should parse an unknown value to a specific type.
 */
export interface PropertyParser<T> extends HasUuid {
    parse(value: unknown): T;
}
