interface InlineEditProps { value?: string; placeholder?: string; disabled?: boolean; required?: boolean; class?: string; onsave?: (value: string) => void; oncancel?: () => void; } declare const InlineEdit: import("svelte").Component; type InlineEdit = ReturnType; export default InlineEdit;