type MultiGeometryPlusBadgeProps = Readonly<{ size: number; color: string; /** Stroke color for the cross. Defaults to `"white"`. */ plusColor?: string; className?: string; "data-testid"?: string; title?: string; "aria-label"?: string; }>; /** * Compact circular "+" badge for multi-part GeoJSON geometries. * * @internal */ export declare const MultiGeometryPlusBadge: ({ size, color, plusColor, className, "data-testid": dataTestId, title, "aria-label": ariaLabel, }: MultiGeometryPlusBadgeProps) => import("react/jsx-runtime").JSX.Element; export {};