interface Props { description?: string; pendingStreakImg?: string; filledStreakImg?: string; counterId: string; userId: string; token: string; counter?: number; stepDetails: Array<{ range: number; title: string; description: string; }>; uniqueUserId?: string; uniqueEmailId?: string; footerText?: string; footerLink?: string; styleConfig?: { Form?: React.CSSProperties; Count?: React.CSSProperties; Heading?: React.CSSProperties; Description?: React.CSSProperties; Label?: React.CSSProperties; Footer?: React.CSSProperties; IconBackground?: React.CSSProperties; Icon?: { ActiveBackGround?: string; InactiveBackGround?: string; ActiveColor?: string; InactiveColor?: string; }; IconColor?: React.CSSProperties; }; } export default function DailyStreak({ pendingStreakImg, filledStreakImg, counterId, userId, token, counter, stepDetails, uniqueEmailId, uniqueUserId, styleConfig, footerText, footerLink }: Props): import("react/jsx-runtime").JSX.Element; export {};