import React from 'react'; interface SvgIconConstituentValues { strokeColor?: string; strokeWidth?: string; strokeWidth2?: string; strokeWidth3?: string; strokeFill?: string; fill?: string; imageWidth?: string; imageHeight?: string; width?: string; viewBox?: string; height?: string; rotateCenter?: number; style?: React.CSSProperties; className?: string; } declare const Icon: React.FC; export default Icon;