import { AnchorHTMLAttributes } from 'react';
import { default as styles } from './Link.module.css';
export { styles as LinkClasses };
export interface LinkProps extends AnchorHTMLAttributes {
}
export declare const Link: ({ className, children, ...restProps }: LinkProps) => JSX.Element;