import { Tree } from '@nx/devkit'; export type GenerationOptions = { name: string; flat: boolean; path: string; project: string; projectSourceRoot: string; type?: string; }; export type FileInfo = { directory: string; fileName: string; filePath: string; }; export declare function getFileInfo(tree: Tree, options: GenerationOptions): FileInfo;