import { type TSConfig } from './types';
export type GetTopLevelTsConfigArgs = {
    cwd: string;
    tsConfigPath?: string;
};
export declare const getTopLevelTsConfig: ({ cwd, tsConfigPath, }: GetTopLevelTsConfigArgs) => TSConfig;
