import { GithubLabel, GithubRepository } from '../../github'; import { RepositoryConfig } from '../../types'; import { LabelSyncOptions } from './sync'; export declare type LabelSyncReport = { repository: GithubRepository; config: RepositoryConfig; options: LabelSyncOptions; additions: GithubLabel[]; updates: GithubLabel[]; removals: GithubLabel[]; }; /** * * Creates a human readable terminal report of Label Sync. * (Uses chalk to make report more lively.) * * @param report */ export declare function createTerminalReport(report: LabelSyncReport): string;