UNPKG

matrix-react-sdk

Version:
14 lines (13 loc) 399 B
import React from "react"; import { Poll } from "matrix-js-sdk/src/matrix"; import { RoomPermalinkCreator } from "../../../../utils/permalinks/Permalinks"; interface Props { poll: Poll; requestModalClose: () => void; permalinkCreator: RoomPermalinkCreator; } /** * Content of PollHistory when a specific poll is selected */ export declare const PollDetail: React.FC<Props>; export {};