import { PackegeJson, LockFile } from './types';
export declare const readPackageJson: (basePath: string) => PackegeJson | null;
export declare const readPackageLock: (basePath: string) => LockFile | null;
