import { CanvasHTMLAttributes, ReactElement } from 'react';
interface MagicLogoProps extends Omit, 'className'> {
text: string;
particles?: number;
dotSize?: number;
repulsion?: number;
friction?: number;
returnSpeed?: number;
fontFamily?: string;
fontSize?: number;
color?: string;
glow?: boolean;
trace?: boolean;
attractMode?: boolean;
ariaLabel?: string;
className?: string;
}
export declare function MagicText({ text, particles, dotSize, repulsion, friction, returnSpeed, fontFamily, fontSize, color, glow, trace, attractMode, ariaLabel, className, ...props }: MagicLogoProps): ReactElement;
export {};