import { Observable } from '@openobserve/browser-core'; import type { RumConfiguration } from '../domain/configuration'; export interface LocationChange { oldLocation: Readonly; newLocation: Readonly; } export declare function createLocationChangeObservable(configuration: RumConfiguration, location: Location): Observable;