import { AbstractControls, ControlType, Path, Config } from "../AbstractControls"; import { EditorOptions } from "@toast-ui/editor/types/editor"; import { Adminizer } from "../../Adminizer"; export declare class JsonEditor extends AbstractControls { readonly config: Partial; readonly name: string; readonly path: Path; readonly type: ControlType; constructor(adminizer: Adminizer); getConfig(): Config | undefined; getJsPath(): undefined; getCssPath(): undefined; getName(): string; }