import type { IconName } from '../svg'; export interface HdsIconModule { default: string; } export interface HdsIconRegistryEntry { flight: { [size: string]: () => Promise; }; carbon: (() => Promise) | null; } export declare const IconRegistry: Record;