export interface HelpBotReply {
  message: string;
  links?: { title: string; slug: string }[];
  botActive: boolean;
  articleSlug?: string;
}

export interface HelpChatSyncResult {
  ticketId: number;
  botReply?: HelpBotReply | null;
  botActive?: boolean;
}
