import type { YaMapProps } from '../../bare'; import React from 'react'; import type { CamPos, Point } from '../utils/types'; export type MapProps = YaMapProps & { showUserPosition?: boolean; CenterComponent?: React.ComponentType; followUserMode?: boolean; freezedMode?: boolean; nightMode?: boolean; showCenterMarker?: boolean; onCameraPositionChanged?: (pos: CamPos) => void; onMapLongPress?: (point: Point) => void; isZoomGestureCentered?: boolean; }; export declare const Map: React.MemoExoticComponent>; //# sourceMappingURL=map.component.d.ts.map