import { LskrcConfig } from './types.js'; declare function loadConfig({ cwd }?: { cwd: string; }, configFile?: string): Promise<{ path?: string; data?: LskrcConfig; }>; declare function loadPkg(cwd: string, clearCache?: boolean): Promise; declare function getProductionDeps(cwd: string, clearCache?: boolean): Promise; /** * Use this to determine if we should rebuild when package.json changes */ declare function getAllDepsHash(cwd: string): Promise; export { getAllDepsHash, getProductionDeps, loadConfig, loadPkg };