import { Json } from './types'; export declare const invokeEvent: (type: string, data?: Json) => void; type EventCallback = (data: Json) => void; export declare const addListener: (type: string, callback: EventCallback) => () => void; export {};