import React from "react"; import type { Hotspot, HotspotAction } from "../types"; interface HotspotListProps { hotspots: Hotspot[]; onDelete: (id: string) => void; onActionUpdate: (id: string, action: HotspotAction | undefined) => void; } export declare const HotspotList: React.FC; export {};