interface Props { margin: number; paths: string[]; vWidth: number; vHeight: number; duration: number; strokeWidth: number; strokeColor: string; animatedStrokeColor: string; isRepeat?: boolean; isAnimationFinished?: (event: boolean) => void; } declare const AnimatedLogo: ({ margin, paths, vWidth, vHeight, duration, strokeWidth, strokeColor, animatedStrokeColor, isRepeat, isAnimationFinished, }: Props) => JSX.Element; export default AnimatedLogo;