/** * Checks for circular dependencies using dependency-cruiser * @param basePath - The project root path * @param silent - If true, reduces the amount of output during the check * @returns true if no circular dependencies are found, false otherwise */ export declare function buildCircularDeps(basePath: string, silent: boolean): Promise;