import { NumCellsTier } from './domIndependentDrawUtils'; import { ITreeMapCell } from './otherTypes'; export interface IProps { highlighted: string | undefined; cells: ITreeMapCell[]; comparisonTreeMap?: boolean; fallbackTitle?: string; numCellsTier: NumCellsTier; chartContainerWidth: number; chartContainerHeight: number; onCellClick: (id: string) => void; onMouseOverCell: (id: string) => void; onMouseLeaveChart: () => void; } declare const _default: (props: IProps) => JSX.Element; export default _default;