import { Icon } from '../types'; import { RendererElement, RendererNode, VNode } from 'vue'; /** * Factory function that creates a Vue render function for an icon with a specified color. * * This is a specialized helper built on top of createStyledIconRenderer to quickly produce * an icon renderer with only a color style applied. * * @param {Icon} icon - The icon component to be rendered. * @param {string} color - The color to apply to the icon. * @returns {() => VNode>} A Vue render function producing the colorized icon vnode. */ export declare function createColoredIconRenderer(icon: Icon, color: string): () => VNode;