import type { FC } from "react"; import type { IMap, IMapRef } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент карты. Служит оберткой над Yandex.Maps. * @returns {ReactElement} */ declare const Map: FC; export type { IMap, IMapRef }; export { Map, };