import type { ExtendedSearchResultItem, JSONEditorContext, JSONSelection } from '../../../types.js'; import type { JSONPath } from 'immutable-json-patch'; interface Props { path: JSONPath; value: unknown; context: JSONEditorContext; enforceString: boolean; selection: JSONSelection | undefined; searchResultItems: ExtendedSearchResultItem[] | undefined; } declare const JSONValue: import("svelte").Component; type JSONValue = ReturnType; export default JSONValue;