import { Tree } from '@nx/devkit'; export declare function projPattern(path: string): string; /** * Wraps the fast-glob package. * @returns array of file paths */ export declare function glob(path: string, cwd?: string, tree?: Tree): string[] | Promise; export declare function globSync(path: string, cwd?: string, tree?: Tree): string[]; export declare function findProjectFileInPath(path: string, tree?: Tree): Promise; export declare function findProjectFileInPathSync(path: string, tree?: Tree): string;