import { Rule } from '@angular-devkit/schematics'; interface Options { path?: string; } /** * Renames the directive to its name in 20.X * @param options The options of the migration * @returns The rule */ export declare function rename(options: Options): Rule; export {};