import { LoggerService } from '../services'; type Location = { city: string; region: string; country: string; }; /** * Helper to get location. Intended for client-side use only from unique * requesters. * @param logger * @returns { city, region, country} */ export declare const getLocation: ({ logger }?: { logger?: LoggerService | undefined; }) => Promise; export {};