export declare enum LocationFlagInPixui {
    LocationSuccess = 1,
    LocationNoPermission = 2,
    LocationFailed = 3
}
/**
 * 获取游戏定位信息,回调数据
 * {
 *   flag: LocationFlagInPixui,
 *   lat: number,
 *   lng: number,
 * }
 */
export declare const getLocationInPixui: (platformAPI: any) => Promise<unknown>;
