/** * Resolve kinds, list metadata, style helpers. */ import type { NetworkIconKind, NetworkIconMeta, NetworkIconStyle } from './types'; export declare function slugNetworkType(type: string): string; /** Alias map: slug → canonical kind (covers the full requested device list). */ export declare function resolveNetworkIconKind(type: string): NetworkIconKind; export declare function getNetworkIconMeta(kind: NetworkIconKind): NetworkIconMeta; /** Full catalog of canonical icons (one per kind). */ export declare function listNetworkIconKinds(): NetworkIconMeta[]; /** All accepted type aliases (including friendly names). */ export declare function listNetworkTypeAliases(): string[]; export declare function networkStyleForKind(kind: NetworkIconKind): NetworkIconStyle;