import { UnsubscribeCallback } from "../types"; export declare class Vent { private events; publish: (topic: string, data: any) => void; subscribe: (topic: string, handler: (data: any) => void) => UnsubscribeCallback; unsubscribe: (topic: string, handler: (data: any) => void) => void; } //# sourceMappingURL=vent.d.ts.map