import React from "react"; import "./Nudge.scss"; import "react-international-phone/style.css"; type LeadGenerationNudgeProps = { ctaButtonColor?: string; headerColor?: string; title?: string; subtitle?: string; handleLoginOrSignup?: (phoneNumber: string, email: string) => Promise; handleSubmit?: (phoneNumber: string, otp: string) => Promise; onClose?: () => void; closeIconColor?: string; }; declare const LeadGenerationNudge: ({ ctaButtonColor, headerColor, handleLoginOrSignup, handleSubmit, title, subtitle, onClose, closeIconColor, }: LeadGenerationNudgeProps) => React.JSX.Element; export default LeadGenerationNudge;