import { SVGTemplateResult } from "lit"; /** * Dynamic lookup map — use this when the icon name comes from config/data * at runtime (e.g. in `pd-socialmedia` or `_getAppFooterLinks()`). * * **Achtung:** Importiert alle Icons. Für optimales Tree-Shaking * stattdessen die Named Exports direkt importieren: * * ```typescript * // Tree-shakeable (empfohlen für Apps mit wenigen Icons) * import { linkedinIcon, githubIcon } from "@progressive-development/pd-icon-brands"; * * // Dynamischer Lookup (wenn Icon-Name aus Config kommt) * import { brandIconMap } from "@progressive-development/pd-icon-brands"; * const icon = brandIconMap.get("linkedin"); * ``` */ export declare const brandIconMap: ReadonlyMap; /** Union type of all available brand icon names */ export type BrandIconName = "linkedin" | "github" | "x-twitter" | "twitter" | "x" | "instagram" | "facebook" | "youtube" | "tiktok" | "xing" | "whatsapp" | "telegram" | "stackoverflow" | "dribbble" | "behance" | "twitch" | "soundcloud" | "mixcloud" | "spotify" | "applemusic" | "apple-music" | "deezer" | "bandcamp" | "beatport" | "discogs" | "pinterest" | "threads" | "bluesky" | "snapchat" | "discord" | "reddit" | "vimeo" | "mastodon" | "medium" | "patreon"; //# sourceMappingURL=brand-icon-map.d.ts.map