import React from 'react'; export interface LinkTextProps extends React.AnchorHTMLAttributes { arrowSize?: number; children: React.ReactNode; color?: string; href: string; target?: string; underline?: boolean; } declare const LinkText: React.ForwardRefExoticComponent>; export default LinkText;