import { SVGAttributes, CSSProperties } from 'react'; export interface IconProps extends SVGAttributes { className?: string; useCurrentColor?: boolean; style?: CSSProperties; } export default function IconScan(props: IconProps): JSX.Element;