import { LocationInterface, LocationOptions, LocationResult } from '../location-interface';
export default class TencentMapApiLocation implements LocationInterface {
    static getAreaInfoByLatAndLng(lat: number, lng: number): Promise<unknown>;
    getLocation(options: LocationOptions): Promise<LocationResult>;
}
