import React from "react"; export default function LottieIcon({ isActive, height, width }: AnimatedIconProps): React.JSX.Element; interface AnimatedIconProps { isActive: boolean; width?: number; height?: number; } export {};