import { RecordingContext } from "src/recorder/RecordingContext.js"; import { IInterceptor } from "src/types/interceptor.js"; export declare class LocationInterceptor implements IInterceptor { private onEvent; private context; private currentLocation; private running; constructor(onEvent: (event: any) => void, context: RecordingContext); start(): void; stop(): void; initial(): void; private updateLocation; private loop; private handler; }