import { BroadcastMessage } from '../types';
/** Create a broadcast message object from arguments. */
declare const createMessage: <Payload, Type extends string = string>(eventType: Type, payload?: Payload) => BroadcastMessage<Payload, Type>;
export default createMessage;
