import type { IMap, TPointDefaults, TClusterDefaults } from "./types/index.d.mts"; import type { IComponentBaseProps } from "../../../types/components/index.d.mts"; declare const apiDefaults: { load: string[]; key: string; }; declare const optionsDefaults: { minZoom: number; maxZoom: number; suppressMapOpenBlock: boolean; yandexMapDisablePoiInteractivity: boolean; }; declare const userPropsDefaults: { isAllPointsVisible: boolean; }; declare const pointDefaults: TPointDefaults; declare const clusterDefaults: TClusterDefaults; declare const mapDefaults: IMap & IComponentBaseProps; export { apiDefaults, clusterDefaults, mapDefaults, optionsDefaults, pointDefaults, userPropsDefaults, };