import React from 'react'; import { InsightType } from '@bundle-stats/utils'; interface InsightIconProps extends React.HTMLAttributes<'span'> { type: InsightType; } export declare const InsightIcon: (props: InsightIconProps) => React.JSX.Element; export {};