import React from 'react'; import { Color, Size, Weight } from './types'; interface AProps extends React.DetailedHTMLProps, HTMLAnchorElement> { italic?: boolean; family?: 'sans' | 'serif' | 'mono'; color?: Color; size?: Size; weight?: Weight; } export declare const A: React.FC; export {};