import { type HTMLAttributes, type Ref } from 'react'; export type LetterGlitchProps = Omit, 'children'> & { centerVignette?: boolean; characters?: string; glitchColors?: string[]; glitchSpeed?: number; outerVignette?: boolean; ref?: Ref; smooth?: boolean; }; declare const LetterGlitch: ({ centerVignette, characters, className, glitchColors, glitchSpeed, outerVignette, ref, smooth, style, ...props }: LetterGlitchProps) => import("react/jsx-runtime").JSX.Element; export { LetterGlitch };