export type Entry = (string | Record)[] | string | Record; type Options = { entry?: Entry; }; type MaybePromise = T | Promise; export type TsdownConfig = Options | Options[] | ((overrideOptions: Options) => MaybePromise); export {};