import type { ReactionResponse, ReactionSort } from 'stream-chat';
import type { MessageContextValue } from '../../../context';
import type { ReactionType } from '../types';
export interface FetchReactionsOptions {
    reactionType: ReactionType;
    shouldFetch: boolean;
    handleFetchReactions?: MessageContextValue['handleFetchReactions'];
    sort?: ReactionSort;
}
export declare function useFetchReactions(options: FetchReactionsOptions): {
    isLoading: boolean;
    reactions: ReactionResponse[];
};
