import type { InputHTMLAttributes } from 'react';
import React from 'react';
export interface UcInputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'onChange'> {
    onChange?: (value: string) => void;
}
declare const UcInput: React.ForwardRefExoticComponent<UcInputProps & React.RefAttributes<HTMLInputElement>>;
export default UcInput;
