import React from 'react'; import { CurrentConversation } from '../store/ConversationStore'; export interface TypingProps { prefix?: string; className?: string; style?: React.CSSProperties; onHide?: () => void; onShow?: () => void; conversation: CurrentConversation; } declare let Typing: (props: TypingProps) => import("react/jsx-runtime").JSX.Element; export { Typing };