import { type CSSProperties, type HTMLAttributes, type ReactNode } from "react"; import type { EventFor, EventHandler } from "../events.js"; import type { LatLngLike } from "../geo.js"; import { type MapEventMap, type MapOptions, type Orihon } from "../map.js"; export interface MapProps extends Omit, "onClick">, Omit { center: LatLngLike; zoom: number; children?: ReactNode; style?: CSSProperties; onClick?: EventHandler>; onMapReady?: (map: Orihon) => void; } export declare function Map(props: MapProps): import("react").FunctionComponentElement>; //# sourceMappingURL=map.d.ts.map