import "./ToolIndicator.css"; export type ToolIndicatorProps = { status?: 'success' | 'error' | 'info' | 'loading'; className?: string; qa?: string; }; export declare const ToolIndicator: (props: ToolIndicatorProps) => import("react/jsx-runtime").JSX.Element | null;