import * as lucideIcons from 'lucide-vue-next'; import iconPaths from '../../lib/internal-icons'; import type { PascalToKebab } from '@storyblok/vue-utils'; export type LucideIconComponentName = Exclude; export type LucideIconName = PascalToKebab; export type InternalIconName = keyof typeof iconPaths; export type IconName = LucideIconName | InternalIconName; export declare const isLucideIconName: (iconName: unknown) => iconName is LucideIconName; export declare const isIconName: (data: unknown) => data is IconName;