import { Rule } from '@angular-devkit/schematics'; interface Schema { name: string; active?: boolean; idKey: string; project?: string; path?: string; } export declare function entityStore(options: Schema): Rule; export {};