import React from 'react';
import { IInputUnControlled } from './types/input';
declare const InputUnControlled: <V extends string | unknown>(props: IInputUnControlled<V> & {
    ref?: React.ForwardedRef<HTMLInputElement | undefined>;
}) => JSX.Element;
export { InputUnControlled };
export { InputUnControlled as Input };
