import { TrackingEventInterface, } from './../index'; export interface TrackingServiceInterface { sendEvent: (event: TrackingEventInterface) => void; sendPage?: (event: TrackingEventInterface) => void; }