import type { FC, RefObject } from "react"; import type { TPoint, TCluster } from "../config/types/index.d.mts"; type TMapPlacemarkProps = { point: TPoint; cluster: TCluster; activePointsCountRef: RefObject; isPanel: boolean; }; /** * Внутренний компонент содержимого карты * @returns {ReactElement} */ export declare const MapPlacemark: FC; export {};