import { BaseLogger } from '../base-logger'; type BotLogOptions = { userId?: string; conversationId?: string; workflowId?: string; eventId?: string; messageId?: string; }; export declare class BotLogger extends BaseLogger { constructor(options?: BotLogOptions); with(options: BotLogOptions): BotLogger; withUserId(userId: string): BotLogger; withConversationId(conversationId: string): BotLogger; withWorkflowId(workflowId: string): BotLogger; withEventId(eventId: string): BotLogger; withMessageId(messageId: string): BotLogger; } export {};