export interface RelaybusMessage { topic?: string; payload?: Uint8Array; metadata?: Record; [key: string]: unknown; } export type MessageHandler = (msg: RelaybusMessage) => Promise | void; //# sourceMappingURL=types.d.ts.map