import { SearchQuery } from '../ChatConversation/ChatWindow'; interface SearchProgressIndicatorProps { queries: SearchQuery[]; /** True while the parent section is still streaming */ loading: boolean; } export default function SearchProgressIndicator({ queries, loading }: SearchProgressIndicatorProps): import("react").JSX.Element; export {};