/** * An error thrown when a parent's meta has the same key as a child and the types are not compatible. * A child's meta can override properties of the parent, however the types must match! * @group Errors */ export declare class MetaPropertyConflict extends Error { constructor(property?: string); }