///
import { InputProps } from './types';
/** deal with meta and input, provide isActive */
export declare const useInput: (props: InputProps) => {
isActive: boolean;
setIsActive: import("react").Dispatch>;
isError: boolean;
errorMessage: any;
isDisabled: boolean | undefined;
onBlur: ((event?: import("react").FocusEvent | undefined) => void) | undefined;
onChange: ((value: K, event?: import("react").SyntheticEvent | undefined) => void) | undefined;
onFocus: ((event?: import("react").FocusEvent | undefined) => void) | undefined;
value: any;
};