import React from 'react'; import { IconButtonProps } from '@mui/material'; import { TextFieldProps } from '../text-field'; export type PasswordProps = Omit, 'select'> & { /** * position of show/hide password toggler button in input * @default 'end' */ showPasswordTogglerButtonPosition?: 'end' | 'start'; slots?: { showPasswordIcon?: React.ElementType; hidePasswordIcon?: React.ElementType; }; slotProps?: { showPasswordIcon?: React.SVGAttributes; hidePasswordIcon?: React.SVGAttributes; showPasswordTogglerButton?: Omit; }; }; declare function Password(inProps: PasswordProps): import("react/jsx-runtime").JSX.Element; declare module '@mui/material' { interface Components { ReevolvePassword?: { defaultProps?: Partial; }; } } export default Password; //# sourceMappingURL=Password.d.ts.map