import React from 'react';
export type LinkAttributes = React.AnchorHTMLAttributes<HTMLAnchorElement>;
export interface LinkProps extends LinkAttributes {
    size?: '56' | '48' | '40' | '32' | '24' | '16';
    href: string;
    disabled?: boolean;
    isLoading?: boolean;
    loadingMessage?: string;
    variant?: 'primary' | 'secondary-outline' | 'secondary-outline-ghost' | 'tertiary' | 'text' | 'destructive';
}
