import type React from 'react'; /** * @csspart base */ export interface ThinkingOwnProps { /** * Unique identifier for the element. * @example 'example-id' */ id?: string; /** * Visual style variant. Allowed values: `ghost`, `filled`. * @example 'ghost' */ variant?: 'ghost' | 'filled'; /** * Corner radius style. Allowed values: `sharp`, `rounded`, `pill`. * @example 'sharp' */ shape?: 'sharp' | 'rounded' | 'pill'; /** * 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'; /** * Animation speed multiplier for the thinking indicator. * @example 'example' */ speed?: string; /** 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 ThinkingProps = ThinkingOwnProps & Omit, keyof ThinkingOwnProps | 'children' | 'dangerouslySetInnerHTML'>; export declare const Thinking: React.ForwardRefExoticComponent, "children" | "dangerouslySetInnerHTML" | keyof ThinkingOwnProps> & React.RefAttributes>;