import type { Plugin } from 'vue';
import type { SvgNode } from '@inkline/inkline/types';
export interface InklineIconsPluginOptions {
    icons: Record<string, SvgNode>;
}
export declare const IconsPlugin: Plugin;
