import type { HtmlIngredientProps } from '../types.js'; export interface EditableInputProps extends HtmlIngredientProps<'input', HTMLInputElement> { } declare const EditableInput: import("svelte").Component; type EditableInput = ReturnType; export default EditableInput;