import type { Commit } from '../../sourceCommit/parse-source-commit.js';
export declare function getTargetPRLabels({ interactive, targetPRLabels, commits, targetBranch, copySourcePRLabels, }: {
    interactive: boolean;
    targetPRLabels: string[];
    commits: Commit[];
    targetBranch: string;
    copySourcePRLabels: boolean | string | string[];
}): string[];
