import Octokit from '@octokit/rest'; import { GithubRepository } from '../../github'; import { RepositoryConfig } from '../../types'; import { LabelSyncReport } from './reporter'; export interface LabelSyncOptions { dryRun: boolean; } /** * * Handles Label Sync in a repository. * * @param client * @param repository * @param config * @param options */ export declare function handleLabelSync(client: Octokit, repository: GithubRepository, config: RepositoryConfig, options: LabelSyncOptions): Promise;