import type { FC, PropsWithChildren } from "react"; import type { IMapState, IMapOptions, Clusterer } from "yandex-maps"; import type { TCluster, TLangs, TAPI } from "../config/types/index.d.mts"; /** * Внутренний компонент карты * @returns {ReactElement} */ declare const YandexMap: FC void; onError: (err: Error) => void; state: IMapState; options: IMapOptions; query: { apikey: string; lang: TLangs; }; clusters: TCluster[]; }>; export default YandexMap;