import * as React from 'react'; import type { HeatmapProps, HeatmapSlots, HeatmapSlotProps } from '@mui/x-charts-pro/Heatmap'; export interface HeatmapPremiumSlots extends HeatmapSlots {} export interface HeatmapPremiumSlotProps extends HeatmapSlotProps {} export interface HeatmapPremiumProps extends HeatmapProps { /** * The type of renderer to use for the heatmap plot. * - `svg-single`: Renders every scatter item in a `` element. * - `webgl`: Renders heatmap cells using WebGL for better performance, at the cost of some limitations. * Read more: https://mui.com/x/react-charts/heatmap/#performance */ renderer?: 'svg-single' | 'webgl'; } declare const HeatmapPremium: React.ForwardRefExoticComponent>; export { HeatmapPremium };