import * as React from "react"; interface IProps { label?: string; onChange: (value: string) => void; } interface IState { value: string; isValid: boolean; } export declare class EmailTextInput extends React.Component { constructor(props: IProps); render(): JSX.Element; private onChange; private validateEmail; } export {};