export interface Event {
    category: string;
    action: string;
    label?: string;
    value?: number;
}
