import type { Meta, StoryObj } from "@storybook/web-components"; interface LinkArgs { href?: string; variant?: "inline" | "standalone"; size?: "small" | "medium" | "large"; kind?: "primary" | "neutral"; target?: HTMLAnchorElement["target"]; rel?: HTMLAnchorElement["rel"]; hreflang?: HTMLAnchorElement["hreflang"]; type?: HTMLAnchorElement["type"]; referrerPolicy?: HTMLAnchorElement["referrerPolicy"]; download?: HTMLAnchorElement["download"]; ping?: HTMLAnchorElement["ping"]; "aria-label"?: string; content?: string; customStyles?: string; icon?: string; } declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const InlineLink: Story; export declare const StandaloneLink: Story; export declare const CustomIconLink: Story; export declare const SizeVariants: Story; export declare const KindVariants: Story; export declare const NativeAnchorAttributes: Story; export declare const AccessibleLink: Story; export declare const CustomInlineColors: Story; //# sourceMappingURL=bl-link.stories.d.ts.map