import { TsData } from './ts-data'; import { FsPath } from './fs-path'; /** * Generates a parsed TypeScript configuration from a given * path. The `paths` property will have its values merged * with the `baseUrl`. * * Example: * * ```json * { * baseUrl: './src', * paths: { * 'app/*': './app' * } * } * ``` * * This will return a paths property of `{'app/*': './src/app'}` */ export declare const generateTsData: (tsConfigPath: FsPath) => TsData;