import * as React from 'react'; import { ComponentsOverrides } from '@mui/material/styles'; import { TextInputProps } from './TextInput'; export declare const PasswordInput: (props: PasswordInputProps) => React.JSX.Element; export interface PasswordInputProps extends TextInputProps { initiallyVisible?: boolean; } declare const PREFIX = "RaPasswordInput"; declare module '@mui/material/styles' { interface ComponentNameToClassKey { [PREFIX]: 'root'; } interface ComponentsPropsList { [PREFIX]: Partial; } interface Components { [PREFIX]?: { defaultProps?: ComponentsPropsList[typeof PREFIX]; styleOverrides?: ComponentsOverrides>[typeof PREFIX]; }; } } export {}; //# sourceMappingURL=PasswordInput.d.ts.map