/** * @doc https://miniprogram.alipay.com/docs/miniprogram/mpdev/API_Location_getLocation */ export declare const getLocation: (args: { bizType?: string | undefined; requestType?: number | undefined; timeout?: number | undefined; horizontalAccuracy?: number | undefined; } & GetLocationArgs) => void; export default getLocation; /** * @doc https://miniprogram.alipay.com/docs/miniprogram/mpdev/API_Location_getLocation */ export declare const getLocationAsync: (args?: ({ bizType?: string | undefined; requestType?: number | undefined; timeout?: number | undefined; horizontalAccuracy?: number | undefined; } & GetLocationArgs) | undefined) => Promise;