export declare namespace TsConfigReader {
    interface ITsConfig {
        extends?: string | string[];
        compilerOptions?: Record<string, any>;
    }
    const read: (file: string) => Promise<ITsConfig>;
}
