import { type CSSProperties } from 'react'; import { type CssLength } from '../../../utils/css'; type ScrollWavesProps = { className?: string; style?: CSSProperties; title?: string | null; ariaLabel?: string; size?: CssLength; background?: string; color?: string; borderColor?: string; lineCount?: number; starLineCount?: number; width?: number; frequency?: number; damp?: number; amplitudeScale?: number; driftScale?: number; }; declare const ScrollWaves: ({ className, style, title, ariaLabel, size, background, color, borderColor, lineCount, starLineCount, width, frequency, damp, amplitudeScale, driftScale, }: ScrollWavesProps) => import("react/jsx-runtime").JSX.Element; export { ScrollWaves }; export type { ScrollWavesProps };