import { ReadOptions } from 'read-tsconfig';
interface ResultContext {
    tsconfig: {};
    path: string;
}
declare function readTsconfigUp(options?: ReadOptions): Promise<ResultContext>;
declare namespace readTsconfigUp {
    var sync: (options?: ReadOptions | undefined) => ResultContext;
}
export default readTsconfigUp;
