import { type ProviderMetricsResult } from "./transactional-email-metrics.js"; export interface EmailActivityEntry { msgId: string; toEmail: string; fromEmail: string; subject: string; status: string; opensCount: number; clicksCount: number; lastEventTime: string; } /** * Renders one email's activity feed. Used both inline on the detail page and * inside the list page's activity dialog, so the "unavailable" and "empty" * states only need to be written once. */ export declare function ActivityTable({ result, isLoading, isError, error, onRetry, }: { result: ProviderMetricsResult | undefined; isLoading: boolean; isError: boolean; error: unknown; onRetry: () => void; }): import("node_modules/@types/react").JSX.Element | null; //# sourceMappingURL=transactional-email-activity.d.ts.map