import { AiAgentsActivationCounts } from '@zeniai/client-epic-state'; export type AIAgentRowStatus = "idle" | "starting" | "building"; export interface AIAgentsActivatingSectionProps { tenantName: string; backgroundRowStatuses?: ReadonlyArray; className?: string; /** * Live counts from the BE — row 0 uses readingCountsSubtitle when both * transaction and GL display values are > 0. Transaction uses synced * transactionCount when available, else targetTransactionCount from QBO connect. */ counts?: AiAgentsActivationCounts; ledgerRowStatuses?: ReadonlyArray; showBackgroundReadyInLabel?: boolean; showLedgerReadyInLabel?: boolean; } export declare const AIAgentsActivatingSection: ({ tenantName, ledgerRowStatuses, backgroundRowStatuses, showLedgerReadyInLabel, showBackgroundReadyInLabel, counts, className, }: AIAgentsActivatingSectionProps) => import("react/jsx-runtime").JSX.Element;