import type { IconRegistry } from './types'; export declare const iconRegistry: IconRegistry; export declare const registerIcon: (name: string, definition: IconRegistry[string]) => void; export declare const registerIcons: (icons: IconRegistry) => void; export declare const getIconNames: () => string[]; export declare const hasIcon: (name: string) => boolean;