import { Subscription } from './types'; export type RozeniteDevToolsClient = Record> = { send: (type: TType, payload: TEventMap[TType]) => void; onMessage: (type: TType, listener: (payload: TEventMap[TType]) => void) => Subscription; close: () => void; }; export declare const getRozeniteDevToolsClient: = Record>(pluginId: string) => Promise>; //# sourceMappingURL=client.d.ts.map