export enum BotMode{ setup, normal } export type BotConfig = { mode: BotMode, bot_token: string, chat_id: number, admin_ids: number[], }