import type { FC, PropsWithChildren } from "react"; import type { Clusterer } from "yandex-maps"; import type { IMap } from "../config/types/index.d.mts"; export type TMapItemsProps = Pick & PropsWithChildren<{ onReady?: (clusters: Clusterer[]) => void; }>; /** * Внутренний компонент содержимого карт * @returns {ReactNode} */ declare const MapItems: FC; export { MapItems, };