import { Rule } from "@angular-devkit/schematics"; /** Ensure a directory exists in the tree, creating a .gitkeep file if it does not */ export declare function EnsureFolderSchematicFactory(options: EnsureFolderOptions): Rule; /** Options for the ensure folder schematic */ export interface EnsureFolderOptions { path: string; }