import { SvelteComponent } from "svelte"; declare const __propDef: { props: { class?: string | undefined; name: string; href?: string | undefined; type?: "origin" | "blank" | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SocialLinkProps = typeof __propDef.props; export type SocialLinkEvents = typeof __propDef.events; export type SocialLinkSlots = typeof __propDef.slots; export default class SocialLink extends SvelteComponent { } export {};