import type { InputProps } from '.';
export default function useInput({ inputType, value, defaultValue, onChange, onClear, }: Pick<InputProps, 'inputType' | 'value' | 'defaultValue' | 'onChange' | 'onClear'>): {
    inputValue: string | undefined;
    eyeOpen: boolean;
    handleChange: (val: string) => void;
    handleInputClear: () => void;
    triggerPasswordType: () => void;
};
//# sourceMappingURL=useInput.d.ts.map