import React from 'react'; import { Message } from '../../types'; interface Props { title?: string; message: Message; hideTags?: boolean; inChannel?: boolean; toggleExpand?: boolean; oneOf?: boolean; } export declare const MessageComponent: React.FunctionComponent; export {};