import { Bot } from '../services/BotService'; type Brand = 'standalone' | 'portal' | 'allan'; declare const BotUtil: { fileIds: (bot: Bot) => string[]; portalUrl: (baseUrl: string, botId: string, brand?: Brand) => string; }; export default BotUtil;