import React, { AnchorHTMLAttributes } from 'react';
import { TextProps } from "../text";
export type AnchorProps = {
    color?: string;
    rel?: string;
} & TextProps & AnchorHTMLAttributes<HTMLAnchorElement>;
declare const Anchor: ({ color, styles, className, ...rest }: AnchorProps) => React.JSX.Element;
export { Anchor };
