import type React from 'react'; import type { BaseProps } from '../../types/component'; export interface InputProps extends BaseProps { name?: string; focus?: boolean; maxlength?: number; value?: string; password?: boolean; type?: 'text' | 'number' | 'digit'; cursor?: number; selectionStart?: number; selectionEnd?: number; adjustPosition?: boolean; placeholder?: string; placeholderStyle?: React.CSSProperties; placeholderClassName?: string; disabled?: boolean; cursorSpacing?: number; onInput?: (e: any) => void | string; onClick?: (e: any) => void; onFocus?: (e: any) => void; onBlur?: (e: any) => void; onConfirm?: (e: any) => void; } export declare const Input: React.ComponentType;