import React from "react"; import type { HotspotActionType } from "../types"; interface ActionTypeSelectorProps { value: HotspotActionType; onChange: (value: HotspotActionType) => void; } export declare const ActionTypeSelector: React.FC; export {};