import { EventAction } from "./EventAction";
export interface AnalyticsSettings {
    enableEventTracking: boolean;
    eventCategory: string;
    eventName: string;
    eventActions?: Array<EventAction>;
    eventActionTemplate?: string;
}
