import { FC } from '@dineug/r-html'; export type TextInputProps = { class?: any; title?: string; placeholder?: string; readonly?: boolean; disabled?: boolean; width?: number; value: string; numberOnly?: boolean; autofocus?: boolean; onInput?: (event: InputEvent) => void; onChange?: (event: InputEvent) => void; onBlur?: (event: FocusEvent) => void; onKeyup?: (event: KeyboardEvent) => void; onKeydown?: (event: KeyboardEvent) => void; }; declare const TextInput: FC; export default TextInput;