import { Tree } from "@nrwl/devkit"; import { StandaloneRuleGeneratorSchema as Schema } from "../schema"; export interface NormalizedSchema extends Schema { directory: string; index: string; } export declare function normalizeOptions(tree: Tree, options: Schema): NormalizedSchema;