import { type CSSProperties } from 'react'; import { type AnchorControlProps } from '../../shared/contracts'; export type WhimsicalLinkProps = Omit & { children: string; activePath?: string; restingPath?: string; height?: CSSProperties['height']; width?: CSSProperties['width']; textColor?: CSSProperties['color']; lineColor?: CSSProperties['color']; fontFamily?: CSSProperties['fontFamily']; fontSize?: CSSProperties['fontSize']; lineWidth?: CSSProperties['strokeWidth']; textDy?: string | number; activeDuration?: number; restingDuration?: number; activeEase?: string; restingEase?: string; motionDisabled?: boolean; svgClassName?: string; pathClassName?: string; textClassName?: string; }; export declare const WhimsicalLink: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;