import type { StoryObj } from '@storybook/react'; import { LinkVariant } from './Link'; declare const meta: { title: string; component: ({ targetBlank, ...props }: import("./Link").LinkProps) => import("@emotion/react/jsx-runtime").JSX.Element; parameters: { layout: string; }; tags: string[]; argTypes: { variant: { control: "select"; options: LinkVariant[]; }; color: { control: "color"; }; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Primary: Story; export declare const Secondary: Story; export declare const CustomColor: Story; export declare const ExternalLink: Story; //# sourceMappingURL=Link.stories.d.ts.map