import { UpdatePluginConfigDto } from '../../../modules/config/dto/config.dto'; import { BUDDY_TELEGRAM_PLUGIN_NAME } from '../buddy-telegram.constants'; export declare class UpdateBuddyTelegramConfigDto extends UpdatePluginConfigDto { type: typeof BUDDY_TELEGRAM_PLUGIN_NAME; enabled?: boolean; botToken?: string | null; allowedUserIds?: string | null; }