import HtmlNode from '../../../Components/Extension/HtmlNode'; import { WaykeStore } from '../../../Redux/store'; export interface PartialCustomerValidation { email: boolean; phone: boolean; } interface EmailAndPhoneProps { readonly store: WaykeStore; } declare class EmailAndPhone extends HtmlNode { private readonly props; private state; private contexts; constructor(element: HTMLDivElement, props: EmailAndPhoneProps); private onChange; private onBlur; private updateUiError; private updateProceedButton; private onProceed; private onChangeContacts; render(): void; } export default EmailAndPhone;