import React from 'react'; interface SvgPathIconProps { fontSize?: string; className?: string; viewBox?: string; viewBoxFill?: string; path: { d: string; fillRule?: "nonzero" | "evenodd" | "inherit"; clipRule?: "nonzero" | "evenodd" | "inherit"; }; } declare const SvgPathIcon: React.FC; export default SvgPathIcon;