import type { JSONPath } from 'immutable-json-patch'; import { type FindNextInside, type JSONParser, type JSONSelection, Mode, type OnFind, type OnJSONSelect, type OnPasteJson, type OnPatch, type ValueNormalization } from '../../../types.js'; 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 EditableValue: $$__sveltets_2_IsomorphicComponent<{ path: JSONPath; value: unknown; selection: JSONSelection | undefined; mode: Mode; parser: JSONParser; normalization: ValueNormalization; enforceString: boolean; onPatch: OnPatch; onPasteJson: OnPasteJson; onSelect: OnJSONSelect; onFind: OnFind; focus: () => void; findNextInside: FindNextInside; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type EditableValue = InstanceType; export default EditableValue;