import MQTT from 'mqtt'; declare global { const mqtt: typeof MQTT; type VideoCommand = 'play' | 'pause' | 'seek'; type VideoState = { currentTime: number }; type VideoCommandBroadcaster = ( command: VideoCommand, state: VideoState ) => void; }