import { SVGProps } from './SVG';
import './style/index.less';
export * from './SVG';
export interface HeatMapProps extends SVGProps {
    prefixCls?: string;
}
export default function HeatMap(props: HeatMapProps): JSX.Element;
