import { type CSSProperties } from 'react'; import { type AnchorControlProps } from '../../shared/contracts'; import { type CssLength } from '../../../utils/css'; export type AsciiRippleLinkProps = Omit & { children: string; className?: string; chars?: string; duration?: number; fontFamily?: CSSProperties['fontFamily']; fontSize?: CssLength; lockWidth?: boolean; motionDisabled?: boolean; mutedColor?: CSSProperties['color']; preserveSpaces?: boolean; respectReducedMotion?: boolean; spread?: number; style?: CSSProperties; textColor?: CSSProperties['color']; }; export declare const AsciiRippleLink: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;