import React from 'react'; interface AnimatedBorderProps { children: React.ReactNode; color?: string; duration?: number; strokeWidth?: number; borderRadius?: number; } export declare const AnimatedBorder: React.FC; export {};