import * as React from 'react';
import { ThreadModel } from '../../models';
type Props = {
    thread: ThreadModel;
};
declare const InitialThreadMessage: React.FC<Props>;
export default InitialThreadMessage;
