import React from 'react'; import { TextInput } from 'react-native'; import { InputProps } from '../Input'; import type { IconType } from '../Icon'; import { type ShadowProps } from '../../common/shadow'; export interface PasswordInputProps extends Omit, ShadowProps { secureTextEntry?: boolean; toggleIconVisible?: boolean; toggleIconNames?: { show: string; hide: string; }; toggleIconType?: IconType; onVisibilityChange?: (visible: boolean) => void; toggleIconColor?: string; maxLength?: number; } declare const PasswordInput: React.ForwardRefExoticComponent>; export default PasswordInput; //# sourceMappingURL=PasswordInput.d.ts.map