/** * Runs `task` and, if it throws, prefixes the error message with `context` so a * migration failure points at the file/step that produced it instead of showing * only a stack trace into the compiled schematic. */ export declare function withMigrationContext(context: string, task: () => T): T;