export interface SyncRowCountInput { localRows: number; syncedRows: number; remoteRows: number; totalRows: number; pinnedRows?: number | null; } export interface SyncRowCountSummary { syncedRows: number; pinnedRows: number; missingRows: number; totalRows: number; } export declare function syncRowCountSummary(input: SyncRowCountInput): SyncRowCountSummary; export declare function syncRowCountSummaryLabel(summary: SyncRowCountSummary): string; //# sourceMappingURL=sync-progress.d.ts.map