import * as Octokit from '@octokit/rest'; import { GithubLabel, GithubRepository, GithubIssue } from '../../github'; import { RepositoryManifest } from '../../manifest'; export declare type AssignSiblingsToIssueOptions = { dryRun: boolean; }; /** * * Assigns label siblings to an Issue. * * @param github * @param pr * @param manifest * @param label */ export declare function assignSiblingsToIssue(github: Octokit, repository: GithubRepository, issue: GithubIssue, manifest: RepositoryManifest, options: AssignSiblingsToIssueOptions): Promise;