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