import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' export interface SpinnerProps extends HTMLAttrs { children?: ReactNode variant?: Variant fullScreen?: boolean inline?: boolean label: string show?: boolean isStatic?: boolean persistChildrenState?: boolean tokens?: Record labelPosition?: 'bottom' | 'right' } export declare const Spinner: ComponentType