/** * This is useful when you need to dynamically retrieve the SVG for an icon. * It will cache the icon SVG so that it doesn't need to be fetched multiple times. * It will also return the same SVG for the same icon name and collection. * * @param iconName - The name of the icon to retrieve. * @param collection - The collection of the icon to retrieve. Today we only support lucide. * @returns The SVG for the icon. */ declare function getIconSvg(iconName: string, collection?: string): Promise; export { getIconSvg };