import type { CustomIconPackEntry } from "./CustomIconPackEntry.js"; import type { SharedIconPackEntry } from "./SharedIconPackEntry.js"; import type { UniqueIconPackEntry } from "./UniqueIconPackEntry.js"; export type IconPackEntry = { "type": "unique"; } & UniqueIconPackEntry | { "type": "shared"; } & SharedIconPackEntry | { "type": "custom"; } & CustomIconPackEntry; //# sourceMappingURL=IconPackEntry.d.ts.map