import type { TsConfigJson } from "@stryke/types/tsconfig";
/**
 * Loads a tsconfig.json file and returns the parsed JSON object.
 *
 * @param filePath - The directory to start searching for the tsconfig.json file.
 * @returns The parsed tsconfig.json object or null if not found.
 */
export declare function loadTsConfig(filePath?: string): Promise<TsConfigJson>;
