/** * SimpleInput - basic single-line input (from git-agent style) */ import type { SimpleInputProps } from '../types/ui.js'; /** * Simple, lightweight input component for quick interactions */ export declare function SimpleInput({ placeholder, onSubmit, disabled, value: controlledValue, onChange }: SimpleInputProps): import("react/jsx-runtime").JSX.Element;