import { Signal } from "@preact/signals"; import { ComponentChildren } from "preact"; import { PointType } from "../../utils/isPoint"; interface ContextMenuProps { positionSignal?: Signal; children?: ComponentChildren; input?: { label?: string; onInput?: (val: string) => void; options?: Array; } | false; } declare const ContextMenu: ({ positionSignal, children, input }: ContextMenuProps) => import("preact").VNode | null; export default ContextMenu;