import { IMigrationContext } from '../migration-context.js'; /** * Executes the pull request creation process for each repository defined in the migration context. * * @param context - The migration context containing necessary information such as migration specifications and logger. * @returns A promise that resolves when the PR creation process is complete for all repositories. * * @remarks * This function expects the `pr_message` hook to be defined in the migration specification. If it is not defined, * an error will be logged and the function will return early. * * @throws Will throw an error if the `pr_message` hook is not specified in the migration spec. */ declare const _default: (context: IMigrationContext) => Promise; export default _default;