importReactfrom"react";
import { Room } from"matrix-js-sdk/src/matrix";
/**
* Display a button to toggle timeline for video rooms
* @paramroom
* @returns A button to toggle timeline in the right panel.
*/exportdeclareconstVideoRoomChatButton: React.FC<{
room: Room;
}>;