Repository URL to install this package:
|
Version:
3.7.2 ▾
|
import * as React from 'react';
import { InputProps } from '../../inputs';
export declare type PasswordAutoComplete = 'current-password' | 'new-password' | 'password';
declare class PasswordPlugin extends React.Component<InputProps> {
static isSatisfiedByProps(props: {
type: string;
}): boolean;
/**
* @todo can also do this 1 level up and toggle for both confirm and normal
*/
handleToggle: (event?: any) => void;
componentWillUnmount(): void;
render(): JSX.Element;
}
export { PasswordPlugin };
export default PasswordPlugin;