import { default as React, CSSProperties } from 'react'; export interface QuestLoginProps { googleClientId: string; redirectUri: string; redirectURL: string; btnColor?: string; email?: boolean; google?: boolean; btnTextColor?: string; textColor?: string; backgroundColor?: string; font?: string; headingText?: string; descriptionText?: string; googleButtonText?: string; IconColor?: string; onSubmit?: ({ userId, token }: { userId: string; token: string; }) => void; onError?: ({ email, error }: { email?: string; error?: 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; }; showFooter?: boolean; } declare const QuestLogin: React.FC; export default QuestLogin;