import type { MigrateConfig } from './types';
/**
 * Add label from `PULL_REQUEST_LABEL` to a pull request.
 *
 * @param config - The migration configuration
 * @param pullRequest - The pull request number
 */
export declare const addPullRequestLabel: (config: MigrateConfig, pullRequest: number) => Promise<void>;
