import React from 'react'; export interface LinkProps extends React.ButtonHTMLAttributes { /** Controls the look of the element */ appearance?: 'regular' | 'breadcrumb'; /** The label of the link */ label: string; /** The link click event callback */ onClick: (event: React.MouseEvent) => void; } declare const Link: ({ appearance, label, ...other }: LinkProps) => JSX.Element; export default Link;