/// import React from 'react'; import { AnchorHTMLAttributes, ReactNode, ElementType } from "react"; type NativeProps = AnchorHTMLAttributes; type LinkProps = NativeProps & { href?: string; view?: 'primary' | 'secondary' | 'tertiary' | 'default'; pseudo?: boolean; className?: string; children: ReactNode; Component?: ElementType; onClick?: NativeProps['onClick']; noUnderline?: boolean; }; declare const Link: React.ForwardRefExoticComponent | undefined; onClick?: NativeProps['onClick']; noUnderline?: boolean | undefined; } & React.RefAttributes>; export { LinkProps, Link };