import { Datum, ComparisonDatum } from './treemapCellTransformer'; import { ITreeMapCell } from '../chart/otherTypes'; declare type TextCell = ITreeMapCell; declare type PrimaryCell = ITreeMapCell; declare type SecondaryCell = ITreeMapCell; declare type BorderBottomCell = ITreeMapCell; declare type BorderRightCell = ITreeMapCell; export declare type ComparisonTreeMapCells = [TextCell, PrimaryCell, SecondaryCell, BorderBottomCell, BorderRightCell]; interface Output { data: ComparisonDatum[]; createComparisionCells: (layoutCell: ITreeMapCell) => ComparisonTreeMapCells; } declare const _default: (primaryData: Datum[], secondaryData: Datum[]) => Output; export default _default;