import { MapLike } from 'typescript'; import { EntryConfig } from './config'; import { Context, PackageJson } from './index'; export declare function hasPackage(packageJson: PackageJson, name: string): boolean; export declare function typedBoolean(value: T): value is Exclude; export declare const readTsconfig: () => { compilerOptions: import("typescript").CompilerOptions; } | undefined; export declare function getAliases(entryFile: EntryConfig): Promise>; export declare function getDependencies(projectPath: string): Promise; export declare function getPeerDependencies(projectPath: string): Promise;