import { EventEmitter } from '../../stencil-public-runtime'; import { User } from '../../interfaces/common.interface'; declare global { interface Window { dispatchReduxAction: (actionType: string, payload?: any) => void; } } export declare class LoginWithEmailCard { navigateToPage: EventEmitter; previousCard: EventEmitter; loginSuccess: EventEmitter; formSubmit: EventEmitter; form: { email: string; password: string; }; loading: boolean; showPassword: boolean; errorMessage: string; private handleSubmit; private dispatchProfileUpdate; private handleInputChange; private togglePasswordVisibility; private clearError; render(): any; }