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