import type { JSONPointer } from 'immutable-json-patch'; import type { DocumentState, JSONSelection, SearchResults, ValidationErrors, TreeModeContext } from '../../../types'; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const JSONNode: $$__sveltets_2_IsomorphicComponent<{ pointer: JSONPointer; value: unknown; state: DocumentState | undefined; validationErrors: ValidationErrors | undefined; searchResults: SearchResults | undefined; selection: JSONSelection | undefined; context: TreeModeContext; onDragSelectionStart: (event: MouseEvent & { currentTarget: EventTarget & HTMLDivElement; }) => void; }, { [evt: string]: CustomEvent; }, { identifier: {}; }, {}, string>; type JSONNode = InstanceType; export default JSONNode;