type EntryDescription = Record; type Entry = Record; export type RsbuildConfig = { plugins?: unknown[]; source?: { entry?: Entry; preEntry?: string | string[]; }; environments?: { [k: string]: Pick; }; }; export {};