import { GAEventCategory } from '../types/enums'; export { GAEventCategory }; export interface GAPlugin { name: string; resolveCategory?: (eventName: string, params?: Record) => GAEventCategory | string | null | undefined; } export declare const registerGAPlugin: (plugin: GAPlugin) => void; export declare const getEventCategory: (name: string, params?: Record) => GAEventCategory;