import React from 'react'; export type LinkColor = 'primary' | 'text' | 'muted' | 'info' | 'success' | 'warning' | 'error'; export type LinkUnderline = 'always' | 'hover' | 'none'; export type LinkProps = React.AnchorHTMLAttributes & { color?: LinkColor; underline?: LinkUnderline; }; type LinkComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Link: LinkComponent; export default Link; //# sourceMappingURL=index.d.ts.map