import type { App, Plugin } from 'vue'; import type { IconifyJSON } from '@iconify/vue'; /** * Grimoire plugin options */ export interface GrimoirePluginOptions { /** Automatically import Grimoire's base icon set. Defaults to true. */ importBaseIcons?: boolean; /** Additional icon collections to register. Can be a single collection or an array. */ icons?: IconifyJSON | IconifyJSON[]; } declare const GrimoirePlugin: Plugin; export default GrimoirePlugin;