import ts, { type CompilerOptions } from 'typescript'; export declare function getTsConfigJson({ basePath, }?: { basePath?: string; }): { tsConfig: ts.ParsedCommandLine; tsConfigPath: string; }; export declare function getTsConfigCompilerOptions(configSrc: { type: 'resolveTsConfigJson'; basePath?: string; } | { type: 'inline'; config: CompilerOptions; } | { type: 'preset'; preset: 'default' | 'modern' | 'bundler'; }): CompilerOptions; //# sourceMappingURL=get-ts-config.d.ts.map