import React from 'react'; import { BaseProps } from '../Common'; import { IRawInputProps } from './RawInput'; export interface IPasswordProps extends IRawInputProps { showPassword: boolean; eyeProps: BaseProps; } export declare const Password: React.FC;