import { type EventsList as FluoroEventsList, Service as FluoroService } from 'fluoro'; import type { EventsMapping } from '../types/events'; import type Context from './core'; export type EventsList = FluoroEventsList; export type Service = FluoroService; export declare const Service: new (ctx: Context, config: T, identity: string) => Service;