import { InputPasswordProps } from './use-input-password.type'; declare const useInputPassword: (props: InputPasswordProps) => { inputProps: { value: string; onChange: (val?: string | undefined) => void; type: string; }; toggleProps: { onClick: () => void; onMouseDown: (e: any) => any; }; visibility: boolean | undefined; visibilityToggle: boolean | undefined; }; export default useInputPassword; //# sourceMappingURL=use-input-password.d.ts.map