import { Rule, Tree } from '@angular-devkit/schematics'; interface Collection { [schematicName: string]: Schematic; } type Schematic = Record; declare function ngrxResourceFactory({ name: pluralPath }: { name: string; }): Rule; declare function readSchematicsPreSettings(tree: Tree): Promise; export { ngrxResourceFactory, readSchematicsPreSettings };