import type { HTMLAttributes } from 'svelte/elements';
import type { JsonTreeProps } from './types';
type $$ComponentProps = JsonTreeProps & Omit, `onselect` | `onchange`>;
declare const JsonTree: import("svelte").Component<$$ComponentProps, {}, "collapsed_paths" | "show_data_types" | "show_array_indices">;
type JsonTree = ReturnType;
export default JsonTree;