/** * Epic CLI Command * * Commands for managing epic/tracking issues. */ export interface EpicSyncOptions { json?: boolean; } /** * Sync epic status with actual sub-issue states */ export declare function epicSync(epicRef: string, options?: EpicSyncOptions): Promise;