import { InjectionToken, ValueProvider, Provider } from 'injection-js'; export declare const OPTIONS_TOKEN: InjectionToken; export interface NgPackagrOptions { /** Whether or not ng-packagr will watch for file changes and perform an incremental build. */ watch?: boolean; } export declare const provideOptions: (options?: NgPackagrOptions) => ValueProvider; export declare const DEFAULT_OPTIONS_PROVIDER: Provider;