Repository URL to install this package:
|
Version:
3.1.2 ▾
|
/**
* @todo @anto @sriaarthi
* @todo renderIcon before @mohan
*/
import * as React from 'react';
import { Value } from '../typings';
import { InputProps } from '../inputs/typings';
import { InputState } from '../inputs/InputState';
declare class EmailPlugin extends React.Component<InputProps> {
static isSatisfiedByProps(props: {
type: string;
}): boolean;
static defaultState: (inputState: InputState<import("../inputs/typings").AnyObj>) => {
validator: (value: Value) => string | true;
};
render(): JSX.Element;
}
export { EmailPlugin };
export default EmailPlugin;