/**
 * This function helps consider the every condition
 * related to enabling emoji reaction feature.
 */
import type { GroupChannel } from '@sendbird/chat/groupChannel';
import type { SendbirdStateConfig } from '../lib/Sendbird/types';
export interface IsReactionEnabledProps {
    channel: GroupChannel | null;
    config: SendbirdStateConfig;
    moduleLevel?: boolean;
}
export declare function getIsReactionEnabled({ channel, config, moduleLevel, }: IsReactionEnabledProps): boolean;
