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 `<div>` element containing animated SVG paths
 * - Styling via CSS Modules with `--ac-*` custom properties
 * - Client-side only (`"use client"` directive)
 *
 * @example
 * ```tsx
 * <BackgroundBeams />
 * ```
 *
 * @see {@link BackgroundBeamsProps} for available props
 */
declare const BackgroundBeams: React.ForwardRefExoticComponent<BackgroundBeamsProps & React.RefAttributes<HTMLDivElement>>;
export { BackgroundBeams };
//# sourceMappingURL=background-beams.d.ts.map