import * as React from "react"; /** Props accepted by {@link HoleBackground}. */ export interface HoleBackgroundProps extends React.HTMLAttributes { /** Stroke color used for the wireframe discs and line work. @default "#737373" */ strokeColor?: string; /** Number of radial line groups drawn through the tunnel. @default 50 */ numberOfLines?: number; /** Number of animated discs used to build the tunnel depth effect. @default 50 */ numberOfDiscs?: number; /** RGB tuple used to tint the floating particle field. @default [255, 255, 255] */ particleRGBColor?: [number, number, number]; } /** * Renders a vortex-style tunnel animation with discs, scanlines, and particles. * * @remarks * - Animated component using the `motion` library * - Renders a `
` element containing a `` * - Styling via CSS Modules with `--ac-*` custom properties * - Client-side only (`"use client"` directive) * * @example * ```tsx * * ``` * * @see {@link HoleBackgroundProps} for available props */ declare const HoleBackground: React.ForwardRefExoticComponent>; export { HoleBackground }; //# sourceMappingURL=hole-background.d.ts.map