/** CLI arguments passed to `ng-packagr` and `ngPackage()`. */ export interface NgPackagrCliArguments { /** Path to the 'ng-package.json' file */ project: string; } export declare function createNgPackage(opts: NgPackagrCliArguments): Promise;