import { GeolocationResponse } from './types'; export declare class GeolocationService { private endpoint; private cache; private cacheTimestamp; private readonly CACHE_DURATION; constructor(customEndpoint?: string); checkLocation(): Promise; isGDPRRequired(): Promise; clearCache(): void; }