/// declare type AnimatedFavoriteIconProps = { active: boolean; variant?: 'default' | 'light'; scaleBy?: number; color?: string; width?: number; height?: number; onAnimationComplete?: () => void; }; export declare const TOTAL_DURATION_MS: number; declare const AnimatedFavoriteIcon: ({ active, variant, color, width, height, scaleBy, onAnimationComplete, }: AnimatedFavoriteIconProps) => JSX.Element; export default AnimatedFavoriteIcon;