import { CompilerOptions } from 'typescript';
export declare type TsConfig = {
    compilerOptions: CompilerOptions;
    configPath: string;
    extends?: string | string[];
    files?: string[];
    include?: string[];
    exclude?: string[];
};
export declare function findTsConfig(cwd?: string): TsConfig;
