import type { StreakSdkConfig, StreakTexts, StreakTheme, StreakViewMode } from './types'; export interface StreakCardProps { completedDates: string[]; config?: StreakSdkConfig; theme?: StreakTheme; texts?: StreakTexts; activityIcon?: string; defaultMode?: StreakViewMode; className?: string; ctaButton?: { label: string; onClick: () => void; }; background?: string; isLoading?: boolean; visibleDate?: { year: number; month: number; }; onVisibleDateChange?: (date: { year: number; month: number; }) => void; } export declare function StreakCard({ completedDates, config, theme, texts, activityIcon, defaultMode, className, ctaButton, background, isLoading, visibleDate: visibleDateProp, onVisibleDateChange, }: StreakCardProps): import("react/jsx-runtime").JSX.Element; export default StreakCard; //# sourceMappingURL=StreakCard.d.ts.map