import { Meta, StoryObj } from '@storybook/react-vite'; import { default as Link } from './Link'; declare const meta: Meta; export default meta; type Story = StoryObj; /** * Main Story for the Link component. This must contains the `args` * and `parameters` properties in this object. */ export declare const WithControls: Story; export declare const Accessibility: Story; export declare const AllLinkVariants: Story; export declare const LinksWithIcons: Story;