import { Shared } from '@rspack/core/dist/sharing/SharePlugin'; export type CheckSkipFn = (packageName: string) => boolean; export type SkipListItem = string | RegExp | CheckSkipFn; export type SkipList = SkipListItem[]; export type NormalizedSkipList = CheckSkipFn[]; export declare function normalizeSkipList(skipList?: SkipList): NormalizedSkipList; export declare function applySkipList(normalizedSkip: NormalizedSkipList, shared: Shared): import("@rspack/core/dist/sharing/SharePlugin").SharedObject;