import { default as React } from 'react'; import { InputProps, RefInputType } from './interface'; export declare function useInputGroup(props: InputProps): { status: "error" | "warning"; setFocus: React.Dispatch>; isFocused: boolean; inputRef: React.RefObject; inputWrapperRef: React.RefObject; hasLengthError: boolean; value: string; setValue: React.Dispatch>; onMouseDown: (e: React.MouseEvent) => void; onClick: (e: React.MouseEvent) => void; onChange: (value: any, e: any) => void; };