import { HTMLAttributes } from 'react';
export interface LinkProps extends HTMLAttributes<HTMLAnchorElement> {
    /**
     * Accepts a subset of AND Digital brand colors.
     * @default 'colors.charcoal'
     */
    color?: string;
}
