import { Rule, Tree } from "@angular-devkit/schematics"; declare type TreeFunction = (tree: Tree) => Tree; export declare const changeTopAppBar: (projectName: string) => (tree: Tree) => import("@angular-devkit/schematics/src/tree/interface").Tree; export declare const changeProviders: (projectName: string) => TreeFunction; export declare const changeIndex: (projectName: string) => TreeFunction; export declare const changeConfigOverrides: (projectName: string) => TreeFunction; export declare const changePackageJson: (projectName: string) => TreeFunction; export declare const changeTsConfigPaths: (projectName: string) => TreeFunction; export declare const changePaths: (projectName: string) => TreeFunction; export declare const changeRoutes: (projectName: string) => TreeFunction; export declare const authenticationChanges: (name: string) => Rule[]; export {};