import { JSONEditorPropsOptional } from '@arextest/vanilla-jsoneditor'; import { AllDiff } from './helper'; export interface SvelteJSONEditorProps extends JSONEditorPropsOptional { height?: string | number; remark?: string; allDiffByType?: AllDiff; } export default function SvelteJSONEditor(props: SvelteJSONEditorProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;