import type { OnFind, OnPaste } from '../../types'; import { UpdateSelectionAfterChange } 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 EditableDiv: $$__sveltets_2_IsomorphicComponent<{ value: string; initialValue: string | undefined; shortText?: boolean; label: string; onChange: (newValue: string, updateSelection: UpdateSelectionAfterChange) => void; onCancel: () => void; onFind: OnFind; onPaste?: OnPaste; onValueClass?: (value: string) => string; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type EditableDiv = InstanceType; export default EditableDiv;