import type { RemoteClawConfig } from "../../../src/config/config.js"; import { type ReactionLevel, type ResolvedReactionLevel as BaseResolvedReactionLevel } from "../../../src/utils/reaction-level.js"; export type TelegramReactionLevel = ReactionLevel; export type ResolvedReactionLevel = BaseResolvedReactionLevel; /** * Resolve the effective reaction level and its implications. */ export declare function resolveTelegramReactionLevel(params: { cfg: RemoteClawConfig; accountId?: string; }): ResolvedReactionLevel;