import type { SearchController } from 'stream-chat';
export type UseSearchQueriesInProgressParams = {
    searchController: SearchController;
};
export declare const useSearchQueriesInProgress: (searchController: SearchController) => string[];
