import type { Attachment } from 'svelte/attachments'; export type InlineEdit = Attachment & { enabled: boolean; }; export declare function createInlineEdit({ on, defaultEnabled }?: { on?: 'click' | 'dblclick'; defaultEnabled?: boolean; }): InlineEdit;