import { default as React } from 'react'; type CustomInputProps = { hasError?: boolean; onValueChange: (value: string) => void; }; export declare const Input: React.ForwardRefExoticComponent, "onChange"> & React.RefAttributes>; export {};