import { Ref, RefAttributes } from "react"; import { DOMProps, Validation, HoverEvents, FocusEvents } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export declare type TextInputElementType = HTMLInputElement; export interface TextInputProps extends DOMProps, Validation, HoverEvents, FocusEvents, RefAttributes { className?: string; isHovered?: boolean; isFocusVisible?: boolean; isDisabled?: boolean; } export declare type TextInputRef = Ref; declare const TextInput: ForwardedRefComponent; export { TextInput };