import React from 'react'; import { CommonStyledProps } from '../types'; declare type AnchorProps = { children: React.ReactNode; underline?: boolean; } & React.AnchorHTMLAttributes & CommonStyledProps; declare const Anchor: React.ForwardRefExoticComponent<{ children: React.ReactNode; underline?: boolean | undefined; } & React.AnchorHTMLAttributes & CommonStyledProps & React.RefAttributes>; export { Anchor, AnchorProps }; //# sourceMappingURL=Anchor.d.ts.map