import { Project } from './project'; export interface ModuleSelectionOptions { /** * If set to true, the module declarations and @modules directives will be removed from the resulting project */ readonly removeModuleDeclarations?: boolean; } export declare function selectModulesInProject(project: Project, selectedModules: ReadonlyArray, options?: ModuleSelectionOptions): Project;