import type { HTMLAttributes, ReactNode } from 'react';
export interface ThinkingIndicatorProps extends HTMLAttributes {
text?: string;
textClassName?: string;
shimmer?: boolean;
shimmerDuration?: number;
shimmerSpread?: number;
/** 主库可注入 Lottie 等自定义动画;不传则用 CSS 三点脉动 */
loader?: ReactNode;
}
export declare function ThinkingIndicator({ text, textClassName, shimmer, shimmerDuration, shimmerSpread, className, loader, ...props }: ThinkingIndicatorProps): import("react/jsx-runtime").JSX.Element;
export declare namespace ThinkingIndicator {
var displayName: string;
}