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