import ' rollup-plugin-inject-process-env';
import { FC } from "react";
import { ChatAgents } from "../../store/ChatState";
export interface Props {
    readonly agents: ChatAgents;
    readonly textTypingStatusEnabled?: boolean;
}
/**
 * Show the agent is typing (or the bot - for fun)
 */
declare const TypingStatus: FC<Props>;
export default TypingStatus;
