import type { IUserConfig } from 'build-scripts'; interface ICacheOptions { compilePackages: string[]; rootDir: string; userConfig: IUserConfig; } declare function getCacheContent(options: ICacheOptions): string; export default getCacheContent;