/** * Access-control helpers passed to the inbound processor (Telegram-specific). */ import { evaluateGroupBaseAccess, resolveRequireMention, hasBotMention } from '../access-control.js'; export declare function createTelegramInboundAccessControl(): { normalizeAllowFromWithStore: (opts: { allowFrom?: Array; storeAllowFrom?: string[]; }) => import("@xopcai/xopc/channels/channel-domain.js").NormalizedAllowFrom; evaluateGroupBaseAccess: (opts: Parameters[0]) => import("@xopcai/xopc/channels/channel-domain.js").GroupAccessResult; resolveRequireMention: (opts: Parameters[0]) => boolean; hasBotMention: (opts: Parameters[0]) => boolean; removeBotMention: (text: string, botUsername: string) => string; };