import type { AnchorHTMLAttributes, CSSProperties } from 'react';
import { type CssLength } from '../../../utils/css';
export type GlitchingTextProps = Omit, 'children' | 'style'> & {
children?: string;
color?: string;
fontFamily?: CSSProperties['fontFamily'];
fontSize?: CssLength;
active?: boolean;
style?: CSSProperties;
};
export declare const GlitchingText: ({ children, className, color, fontFamily, fontSize, active, href, style, ...props }: GlitchingTextProps) => import("react/jsx-runtime").JSX.Element;