import type React from 'react'; /** * @csspart base */ export interface SpinnerOwnProps { /** * Unique identifier for the element. * @example 'example-id' */ id?: string; /** * Visual style variant. Allowed values: `circle`, `square`, `morph`. * @example 'circle' */ variant?: 'circle' | 'square' | 'morph'; /** * Visible label text. * @example 'Example label' */ label?: string; /** * Component size. Allowed values: `xs`, `sm`, `md`, `lg`, `xl`. * @example 'xs' */ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; /** CSS class applied to the Custom Element host. * @example 'my-component' */ className?: string; /** Inline styles applied to the Custom Element host. * @example { marginTop: 8 } */ style?: React.CSSProperties; } /** * Props for ``: the component's own API plus every standard DOM * attribute and native React event handler, forwarded verbatim to the * `` host — `id`, `data-*`, `aria-*`, `title`, `tabIndex`, * `slot`, `onMouseEnter`, and the rest. Own props always win over a * same-named DOM attribute. */ export type SpinnerProps = SpinnerOwnProps & Omit, keyof SpinnerOwnProps | 'children' | 'dangerouslySetInnerHTML'>; export declare const Spinner: React.ForwardRefExoticComponent, "children" | "dangerouslySetInnerHTML" | keyof SpinnerOwnProps> & React.RefAttributes>;