import React, { ChangeEvent, FocusEvent } from "react"; interface TextInputProps { type?: string; onChange?: (event: ChangeEvent, state?: any) => void; onBlur?: (event: FocusEvent, props?: any) => void; onKeyPress?: (event: any, state?: any) => void; onKeyDown?: (event: any, state?: any) => void; disabled?: boolean; required?: boolean; className?: string; pattern?: string; name?: string; placeholder?: string; value?: any; label?: string; id?: any; maxLength?: any; minLength?: any; step?: number; defaultValue?: any; checked?: boolean; enableTooltip?: boolean; disablePasting?: boolean; autoComplete?: string; inputRef?: any; } export declare const Textbox: React.FC; export {};