import { type BoothBase } from "../store/BoothStore";
import { type Exhibitor } from "../store/ExhibitorStore";
import { type HeatmapYah } from "../store/HeatmapStore";
type SupportedItem = BoothBase | Exhibitor | HeatmapYah | undefined;
declare const useHeatmapData: (item: SupportedItem) => {
    clicks: number;
    background: string;
};
export default useHeatmapData;
//# sourceMappingURL=useHeatmapData.d.ts.map