import type { Project } from "../config/config.js"; interface SyncFailure { project: Project; error: Error; } export declare function formatSyncFailureMessage(failures: SyncFailure[]): string; export {};