import { Rule } from "@angular-devkit/schematics"; /** Adds a script to the NPM package */ export declare function AddScriptSchematicFactory(options: AddScriptOptions): Rule; /** Options for adding a script */ export interface AddScriptOptions { /** The script name */ name: string; /** The script command */ command: string; }