/** * Fetch properties from a URL and return them * * @typedef {JSON & {properties: object}} JsonSchema * @param {JsonSchema | String} property - The property to fetch or parse * @returns {Promise} - The parsed property or fetched schema */ export function parseProperty(property: JsonSchema | string): Promise; export function createEditor(element: import("../main").EOxJSONForm): JSONEditor; export function transformLinks(element: import("../main").EOxJSONForm): void; export function initShowOptInElement(element: import("../main").EOxJSONForm): void; /** * Fetch properties from a URL and return them */ export type JsonSchema = JSON & { properties: object; }; //# sourceMappingURL=editor.d.ts.map