import type { ReactElement } from "react"; import type { MapTheme } from "../../core/types"; import type { MarkerState } from "../../markers/model/markerDomTypes"; type ClusterMarkerDefaultDemoProps = { readonly count: number; readonly state: MarkerState; readonly theme: MapTheme; readonly showSegments: boolean; readonly showSticks: boolean; }; export declare const ClusterMarkerDefaultDemo: ({ count, state, theme, showSegments, showSticks, }: ClusterMarkerDefaultDemoProps) => ReactElement; export {};