import { ChangeEvent, FocusEvent, KeyboardEvent, RefObject } from 'react'; import CSS from 'csstype'; declare function TextInputOnly(props: { className?: string; style?: CSS.Properties; placeholder?: string; onChange?: (value: string, e: ChangeEvent) => void; onFocus?: (e: FocusEvent) => void; onBlur?: (e: FocusEvent) => void; onKeyDown?: (key: string, e: KeyboardEvent) => void; fontSize?: string; inputRef?: RefObject; autoFocus?: boolean; onEnter?: () => void; onEscape?: () => void; defaultValue?: string; value?: string; password?: boolean; bold?: boolean; gridArea?: string; margin?: string; width?: string; borderRadius?: string; padding?: string; inputBackgroundColor?: string; size?: number; maxLength?: number; minLength?: number; number?: boolean; }): JSX.Element; export default TextInputOnly;