export interface tgBotConfig {
    token: string;
    maxConcurrentOperations: number;
}
export interface tgChannelConfig {
    channelId: string;
    description?: string;
    botTokens: string[];
}
export interface tgConfig {
    bots: tgBotConfig[];
    channels: tgChannelConfig[];
    adminChatId?: string;
}
declare const _default: (() => tgConfig) & import("@nestjs/config").ConfigFactoryKeyHost<tgConfig>;
export default _default;
