import { ReactNode } from 'react'; export type BaseInputProps = React.DetailedHTMLProps, HTMLInputElement>; interface SimpleInputProps extends Omit { label?: string; description?: string; value: string | undefined; onChange: (value: string | undefined) => void; rightSlot?: ReactNode; } export declare function SimpleInput({ label, value, description, onChange, className, rightSlot, ...props }: SimpleInputProps): import("react/jsx-runtime").JSX.Element; export {};