import { Rule } from '@angular-devkit/schematics';
import { Schema } from '../schema';
/**
 * Patches main application module by adding 'SunbirdEpubPlayerModule' import.
 *
 * Relevant 'angular.json' structure is:
 *
 * {
 *   "projects" : {
 *     "projectName": {
 *       "architect": {
 *         "build": {
 *           "options": {
 *            "main": "src/main.ts"
 *           }
 *         }
 *       }
 *     }
 *   },
 *   "defaultProject": "projectName"
 * }
 *
 */
export declare function addPlayerModuleToAppModule(options: Schema): Rule;
