import { TypedValuesType } from './embed/TypedValuesType.mjs'; /** * * Lightweight stub representation of a property type, containing only the identifier and value * type. * / */ export declare class PropertyTypeStub { /** * * The human-readable identifier of this property type. */ identifier: string | undefined; /** * * The value type of this property type. */ type: TypedValuesType | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): PropertyTypeStub; }