import { Rule } from "@angular-devkit/schematics"; /** * Schematic for adding the LCU-Documentation library and accompanying documents to an Application. * * @param options The options passed from the CLI. */ export declare function documentation(options: any): Rule; /** * Adds the local path of the documents to the 'angular.json' file so they are served up with the app. * * @param options The options passed from the calling command. * @param docsPath Optional path to specify the location of the documents. If no path given, defaults to target path. */ export declare function addDocsToAssetsPath(options: any, docsPath?: String): Rule;