declare type NitroCategories = "general" | "login" | "cookies" | "darwin" | "sfaq"; export declare type ClientEvent = { category: T; errorType?: string; action: string; /** * @deprecated */ detail?: string; module?: string; owner?: string; version?: number; triggerCondition?: string; description?: string; destinations: { exponea?: boolean; ga?: boolean; logmole?: boolean; bigQuery?: boolean; datadog?: boolean; }; }; export declare type $NitroEvent = ClientEvent; export declare type Event = ClientEvent; export declare type Props = Record; export declare type EventPayload = Event & { timestamp: string; props: Props; }; export declare const make: (event: Event, props: Props, now?: string) => EventPayload; export {};