import { Operation } from "./messages"; import { JSONData, Notification } from "./types"; declare const messageToNotification: ({ uuid, source, operation, data, }: { uuid: string; source: { app: null | number; workspace: null | string; uuid: string | null; appName: string | null; }; operation: Operation; data: JSONData; }) => Notification; export default messageToNotification;