import { FC } from "react";
import { Room } from "matrix-js-sdk/src/matrix";
interface IProps {
room: Room;
onJoinButtonClicked: () => void;
onRejectButtonClicked: () => void;
}
declare const RoomPreviewCard: FC<IProps>;
export default RoomPreviewCard;