import React from "react"; import type { HotspotAction } from "../types"; interface ActionEditorProps { action: HotspotAction | undefined; onActionChange: (action: HotspotAction | undefined) => void; onClose: () => void; } export declare const ActionEditor: React.FC; export {};