type InputProps = React.InputHTMLAttributes<HTMLInputElement> & {
    ref: React.Ref<HTMLInputElement>;
    valuePercent: string;
};
declare const Input: React.ForwardRefExoticComponent<React.PropsWithoutRef<InputProps> & React.RefAttributes<HTMLInputElement>>;
export { 
/**
 * __Input__
 * Internal-only styled input component.
 */
Input, };
