import { Meta, StoryObj } from '@storybook/web-components';
interface LinkArgs {
    color: 'primary' | 'secondary' | 'tertiary' | 'inherit' | 'success' | 'info' | 'warning' | 'danger';
    'custom-class'?: string;
    href?: string;
    rel?: string;
    target?: string;
    title?: string;
    underline: 'always' | 'hover' | 'none';
}
declare const meta: Meta<LinkArgs>;
export default meta;
type Story = StoryObj<LinkArgs>;
export declare const Default: Story;
export declare const Underline: Story;
export declare const ExternalLink: Story;
export declare const InheritColor: Story;
