import React from 'react';
import { ChipProps, InputBaseProps } from '@mui/material';
/**
 * Password field is a WME Text Field component with additional props
 */
interface PasswordInputProps extends InputBaseProps {
    chipColor?: ChipProps['color'];
    chipLabel?: ChipProps['label'];
    value: any;
}
declare const PasswordInput: React.FC<PasswordInputProps>;
export default PasswordInput;
//# sourceMappingURL=password-input.d.ts.map