import { ParsingSchema } from "./types"; export declare class PropertyID { name: PropertyKey; parsedName: PropertyKey; getOnly: boolean; constructor(name: PropertyKey, parsedName?: PropertyKey, getOnly?: boolean); } export interface Property extends ParsingSchema, PropertyID { }