import { type HTMLAttributes } from 'react'; type AsciiTextProps = Omit, 'children' | 'defaultValue' | 'onChange'> & { value?: string; defaultValue?: string; onValueChange?: (value: string) => void; showControls?: boolean; autoPlay?: boolean; respectReducedMotion?: boolean; screenWidth?: number; screenHeight?: number; charWidth?: number; charHeight?: number; characters?: string; fadeDecay?: number; relightCount?: number; relightThreshold?: number; frameInterval?: number; maxLength?: number; inputLabel?: string; updateLabel?: string; }; declare const AsciiText: ({ value, defaultValue, onValueChange, showControls, autoPlay, respectReducedMotion, screenWidth, screenHeight, charWidth, charHeight, characters, fadeDecay, relightCount, relightThreshold, frameInterval, maxLength, inputLabel, updateLabel, className, style, ...rest }: AsciiTextProps) => import("react/jsx-runtime").JSX.Element; export { AsciiText }; export type { AsciiTextProps };