import type { StoryObj } from '@storybook/svelte'; import SocialLink from './SocialLink.svelte'; declare const meta: { title: string; component: typeof SocialLink; tags: string[]; argTypes: {}; }; export default meta; type Story = StoryObj; export declare const Regular: Story;