import { parsedCommandForFnToCli } from "../../types"; /** * @description * Given the path to the declaration directory, it searches all the `.d.ts` files for function declaration statements * with `@CLI` JSDoc tag and parses their command to a data structure appropriate for cli. */ export declare function parseCommands(absolutePathToRootDir: string): parsedCommandForFnToCli[];