export type EntryAssets = { js: string[]; css: string[]; [key: string]: string[]; }; export declare function extractEntryPointFilesFromStats(stats: any, entryName?: string): string[]; export declare function extractEntryAssets(entryPointFiles: string[]): EntryAssets; export declare function extractUtooEntryAssets(entryPointFiles: string[]): EntryAssets;