import { type ReactElement } from "react"; import type { MapTheme } from "../../core/types"; type ClusterMarkerPlaygroundDemoProps = { readonly theme: MapTheme; readonly stickCount: number; readonly showSegments: boolean; readonly showIndicators: boolean; }; export declare const ClusterMarkerPlaygroundDemo: ({ theme, stickCount, showSegments, showIndicators, }: ClusterMarkerPlaygroundDemoProps) => ReactElement; export {};