import { GithubLabel, GithubIssue, GithubRepository } from '../../github'; import { RepositoryManifest } from '../../manifest'; import { SiblingSyncOptions } from './sync'; export declare type SiblingSyncReport = { repository: GithubRepository; manifest: RepositoryManifest; options: SiblingSyncOptions; issues: SiblingSyncIssueReport[]; }; export declare type SiblingSyncIssueReport = { issue: GithubIssue; siblings: GithubLabel[]; }; /** * * Creates a human readable terminal report of Sibling Sync. * (Uses chalk to make report more lively.) * * @param report */ export declare function createTerminalReport(report: SiblingSyncReport): string;