import { default as React } from 'react'; export interface Props { adornment?: { end?: React.ReactNode; start?: React.ReactNode; }; autoFocus?: boolean; clearValue?: boolean; initialValue?: string; onBlur?: React.FocusEventHandler; onChange?: React.ChangeEventHandler; onClick?: React.MouseEventHandler; placeholder?: string; style?: React.CSSProperties; } declare const Input: (props: Props) => import("react/jsx-runtime").JSX.Element; export default Input;