import React, { AnchorHTMLAttributes } from 'react';
export interface AnchorProps extends AnchorHTMLAttributes {
/**
* The URL the anchor tag links to
*/
href: string;
/**
* The content to be displayed in the A tag
*/
children: React.ReactNode;
color?: 'dark' | 'white';
isExternalLink?: boolean;
}
declare const Anchor: (props: AnchorProps) => JSX.Element;
export default Anchor;