import React from 'react';
export type TypingIndicatorProps = {
    /** Whether the typing indicator is in a thread */
    threadList?: boolean;
};
export declare const TypingIndicator: (props: TypingIndicatorProps) => React.JSX.Element | null;
