import type { DrivingInfo, RouteInfo } from '../../../bare'; import type { Point } from '../types'; import type { SetCameraPositionParams } from '../types'; import { MapEvent } from '../types'; export declare const useMap: () => { isReady: boolean; addListener: (event: MapEvent, cb: (data: T) => void) => import("../types").Unsub | undefined; map: { getCameraPosition: () => Promise | undefined; setCameraPosition: (params: SetCameraPositionParams) => void; fitPoints: (points: Array) => void; }; api: { geocode: (point: Point) => Promise; reverseGeocode: (query: string) => Promise; findPath: (points: Point[]) => Promise[]>; }; }; //# sourceMappingURL=use-map.utils.d.ts.map