import * as React from "react"; /** * Props for the {@link Spinner} component. */ export type SpinnerProps = React.ComponentPropsWithoutRef<"svg">; /** * Renders an animated loading indicator. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders an `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * * ``` * * @see {@link SpinnerProps} for available props */ declare const Spinner: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Spinner }; //# sourceMappingURL=spinner.d.ts.map