import { InputHTMLAttributes } from 'react'; import { TLayer } from '../../../types/TLayer'; import { TTextAlignLC } from '../../../types/TTextAlignLC'; import { TUiColorsMain } from '../../../types/TUiColorsMain'; export type TPasswordInputProps = { value?: string; align?: TTextAlignLC; themeType?: Exclude; layer?: TLayer; customEyeOpen?: React.ReactNode; customEyeCrossed?: React.ReactNode; showPassword?: boolean; }; export type TNativePassowrdInputAttrs = Omit, 'type' | 'value'>; export type TPasswordInputPropsWithNativeAttrs = TNativePassowrdInputAttrs & TPasswordInputProps;