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