import { BotCommandScopeDefault } from './BotCommandScopeDefault.generated'; import { BotCommandScopeAllPrivateChats } from './BotCommandScopeAllPrivateChats.generated'; import { BotCommandScopeAllGroupChats } from './BotCommandScopeAllGroupChats.generated'; import { BotCommandScopeAllChatAdministrators } from './BotCommandScopeAllChatAdministrators.generated'; import { BotCommandScopeChat } from './BotCommandScopeChat.generated'; import { BotCommandScopeChatAdministrators } from './BotCommandScopeChatAdministrators.generated'; import { BotCommandScopeChatMember } from './BotCommandScopeChatMember.generated'; export type BotCommandScope = BotCommandScopeDefault | BotCommandScopeAllPrivateChats | BotCommandScopeAllGroupChats | BotCommandScopeAllChatAdministrators | BotCommandScopeChat | BotCommandScopeChatAdministrators | BotCommandScopeChatMember;