import type { Nullable } from "../../../base-types"; import { JsonContentType } from "../json-content-type"; import { PropertyDefinition } from "../property-definition"; /** * Json property definition. */ export declare class JsonPropertyDefinition extends PropertyDefinition { contentType: Nullable; constructor(name: string, init?: Omit, "name">); }