interface Props { d: string; strokeWidth: number; strokeColor: string; } declare const AnimatedBgStroke: ({ d, strokeWidth, strokeColor }: Props) => JSX.Element; export default AnimatedBgStroke;