import type { FC, PropsWithChildren } from "react"; import type { IMap, TAPI } from "../config/types/index.d.mts"; export type TMapModulesProps = Pick & PropsWithChildren<{ ymaps: TAPI; }>; /** * Внутренний компонент модулей карты * @returns {ReactElement} */ declare const MapModules: FC; export { MapModules, };