import React from 'react'; import type { AnimationType, EntranceAnimationType, TriggerType, WeightType } from '../animations/types'; export interface MotionIconProps { name: string; size?: number; color?: string; weight?: WeightType; animation?: AnimationType; entrance?: EntranceAnimationType | null; animationDuration?: number; animationDelay?: number; trigger?: TriggerType; interactive?: boolean; className?: string; 'aria-label'?: string; onClick?: (e: React.MouseEvent) => void; onMouseEnter?: (e: React.MouseEvent) => void; onMouseLeave?: (e: React.MouseEvent) => void; onAnimationEnd?: (e: React.AnimationEvent) => void; } declare const MotionIcon: React.FC; export default MotionIcon; //# sourceMappingURL=MotionIcon.d.ts.map