export interface SyncReport { changed: string[]; skipped: string[]; blocked: string[]; notices?: string[]; } export declare function emptySyncReport(): SyncReport; export declare function runSync(projectRoot: string): Promise;