/** * Sync Service - Orchestrates work item sync operations * * Wraps sync/ utilities and coordinates with WorkItemService for * local file <-> ADO synchronization. */ import type { WorkItemService } from './work-item-service.js'; export declare class SyncService { private readonly workItemService; constructor(workItemService: WorkItemService); syncWorkItemsToFile(project: string, providedWorkItemIds: number[], parentId?: number, childType?: string, folder?: string, includeComments?: boolean, skipAutoConvert?: boolean): Promise; syncWorkItemsFromFile(project: string, workItemIds: number[], folder?: string, skipAutoConvert?: boolean): Promise; checkWorkItemMarkdown(project: string, workItemIds: number[]): Promise; listSyncedWorkItems(folder?: string): Promise; createWorkItemFile(project: string, parentId: number | undefined, workItemType: string, folder?: string): Promise; syncTasksToFile(project: string, parentIds: number[], folder?: string, skipAutoConvert?: boolean): Promise; syncTasksFromFile(project: string, parentIds: number[], folder?: string, skipAutoConvert?: boolean): Promise; } //# sourceMappingURL=sync-service.d.ts.map