import { default as React, CSSProperties } from 'react'; interface EmailLoginProps { otpScreen: boolean; setOtpScreen: React.Dispatch>; btnColor?: string; redirectUri?: string; redirectURL: string; handleOtp: (otp: boolean) => void; entityId: string; textColor?: string; btnTextColor?: string; fontFamily?: string; apiKey: string; apiSecret: string; IconColor?: string; onError?: ({ email, error }: { email?: string; error?: string; }) => void; onSubmit?: ({ userId, token }: { userId: string; token: string; }) => void; styleConfig?: { Heading?: CSSProperties; Description?: CSSProperties; Input?: CSSProperties; Label?: CSSProperties; TextArea?: CSSProperties; PrimaryButton?: CSSProperties; SecondaryButton?: CSSProperties; Form?: CSSProperties; Footer?: { FooterStyle?: CSSProperties; FooterTextStyle?: CSSProperties; FooterIcon?: CSSProperties; FooterText?: string; FooterLink?: string; }; IconStyle?: { BorderColor?: string; Background?: string; color?: string; }; OtpInput?: CSSProperties; }; } declare const EmailLogin: React.FC; export default EmailLogin;