import type { JSONPath } from 'immutable-json-patch'; import type { JSONParser, OnChangeMode } from '../../../types.js'; interface Props { text: string | undefined; json: unknown | undefined; readOnly: boolean; parser: JSONParser; openJSONEditorModal: (path: JSONPath) => void; extractPath: (path: JSONPath) => void; onChangeMode: OnChangeMode; onClick: () => void; } declare const TableModeWelcome: import("svelte").Component; type TableModeWelcome = ReturnType; export default TableModeWelcome;