import * as React from "react"; /** Props accepted by {@link BackgroundBeams}. */ export interface BackgroundBeamsProps extends React.ComponentPropsWithoutRef<"div"> { } /** * Renders animated aurora-style beams that sweep across the background. * * @remarks * - Animated component using the `motion` library * - Renders a `
` element containing animated SVG paths * - Styling via CSS Modules with `--ac-*` custom properties * - Client-side only (`"use client"` directive) * * @example * ```tsx * * ``` * * @see {@link BackgroundBeamsProps} for available props */ declare const BackgroundBeams: React.ForwardRefExoticComponent>; export { BackgroundBeams }; //# sourceMappingURL=background-beams.d.ts.map