/**
 * Finds the closest `tsconfig.json` file and parses it.
 *
 * @category Path : Node
 * @category Package : @augment-vir/node
 * @returns `undefined` if no tsconfig was found or if a found tsconfig fails to parse.
 * @package [`@augment-vir/node`](https://www.npmjs.com/package/@augment-vir/node)
 */
export declare function readTsconfig(startingPath: string): {
    tsconfig: import("typescript").ParsedCommandLine;
    path: string;
} | undefined;
