import FasterConfiguration from "./FasterConfiguration"; import FasterDevice from './FasterDevice'; import FasterSession from './FasterSession'; import FasterEvent from './FasterEvent'; import FasterGeo from './FasterGeo'; export default class FasterAnalytics { private static presetConfiguration?; private static instance?; readonly device: FasterDevice; readonly session: FasterSession; readonly event: FasterEvent; readonly geo: FasterGeo; private analyticsService; private constructor(); static start(trackInstall?: boolean): FasterAnalytics; static startEmbedded(externalDeviceId: string, externalSessionId: string): FasterAnalytics; private static init; static configure(configuration: FasterConfiguration): typeof FasterAnalytics; private static sendOpenEvent; static clear(): void; }