/** * Copyright (c) 2018-2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Aliaksei Chareshneu */ import React from 'react'; import { VolsegEntryData } from './entry-root'; interface JSONEditorComponentProps { jsonData: any; entryData: VolsegEntryData; } export declare const JSONEditorComponent: React.FC; export {};