import type { IconifyJSON, SVGOOptions } from "./iconify"; export type IntegrationOptions = { include?: Record; /** * @default "src/icons" */ iconDir?: string; /** * @default { plugins: ['preset-default'] } */ svgoOptions?: SVGOOptions; }; export type IconCollection = IconifyJSON; export type AstroIconCollectionMap = Record;