import { type CSSProperties } from 'react'; import { type AnchorControlProps } from '../../shared/contracts'; export type ForwardArrowLinkProps = AnchorControlProps & { textColor?: CSSProperties['color']; iconColor?: CSSProperties['color']; underlineColor?: CSSProperties['color']; iconOffset?: CSSProperties['marginLeft']; inlineEndTrim?: CSSProperties['marginRight']; textClassName?: string; iconClassName?: string; }; export declare const ForwardArrowLink: ({ children, className, textColor, iconColor, underlineColor, iconOffset, inlineEndTrim, textClassName, iconClassName, style, ...rest }: ForwardArrowLinkProps) => import("react/jsx-runtime").JSX.Element;