import type { BatchAnalyticsResult } from '../rest/batch-analytics'; import { type CheckWithStatus, type PaginationInfo } from './checks'; import type { OutputFormat } from './render'; export type StatsRow = CheckWithStatus & { analytics?: BatchAnalyticsResult; }; export declare function formatBatchStats(rows: StatsRow[], range: string, format: OutputFormat): string; export declare function formatBatchStatsNavigationHints(pagination: PaginationInfo, range: string, activeFilters: string[]): string;