UNPKG

react-chatbotify

Version:

A modern React library for creating flexible and extensible chatbots.

15 lines 470 B
import "./MediaDisplay.css"; /** * Supports showing of media display for users. * * @param file file containing the media to display * @param fileType type of the file * @param fileUrl url resource to the file */ declare const MediaDisplay: ({ file, fileType, fileUrl }: { file: File; fileType: string | null; fileUrl: string | null; }) => import("react/jsx-runtime").JSX.Element; export default MediaDisplay; //# sourceMappingURL=MediaDisplay.d.ts.map