import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Spinner = "ax-spinner"; type SpinnerProps = BoxProps & { "appearance"?: "default" | "inverse"; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Spinner]: SpinnerProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof SpinnerProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Spinner]: SpinnerProps & Omit<(ComponentPropsWithoutRef<"div">), keyof SpinnerProps>; } } } export { Spinner }; export type { SpinnerProps };