import { type PropsWithChildren, type ReactElement } from 'react'; import type { Point } from '../../types/point.js'; import { getCustomContextMenuItems } from '../interactions-overlay/utils/get-custom-context-menu-items.js'; type ActionsMenu = ReturnType; export type SelectionTooltipWithAsyncActionsProps = { actions: () => Promise | undefined; position: Point; zoomEnabled: boolean; header: ReactElement; range: [number, number] | [Date, Date]; selectFinished: boolean; }; export declare const SelectionTooltipWithAsyncActions: (props: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};