import type { ReactElement } from "react"; import type { DirectionIndicatorDisplay } from "../geometry/useDirectionIndicator"; type MarkerDiscContentProps = { readonly icon: ReactElement | null; readonly iconPx: number; readonly isPill: boolean; readonly dotPx: number; readonly directionDisplay: DirectionIndicatorDisplay; }; export declare const MarkerDiscContent: ({ icon, iconPx, isPill, dotPx, directionDisplay, }: MarkerDiscContentProps) => ReactElement | null; export {};