import { type CSSProperties } from 'react'; import { type AnchorControlProps } from '../../shared/contracts'; export type ScribbleUnderlineArrowLinkProps = AnchorControlProps & { textColor?: CSSProperties['color']; iconColor?: CSSProperties['color']; underlineColor?: CSSProperties['color']; gap?: CSSProperties['gap']; textClassName?: string; iconClassName?: string; underlineClassName?: string; }; export declare const ScribbleUnderlineArrowLink: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;