import type { SocialLink } from './types'; interface Props { /** Links to render. Unknown platforms fall back to a generic link icon. */ links: SocialLink[]; /** Author name, used to build default accessible labels. */ name?: string; } /** A row of accessible social and email icon links for one author. Used inside Bio. */ declare const SocialLinks: import("svelte").Component; type SocialLinks = ReturnType; export default SocialLinks;