import type React from 'react'; /** * @csspart base */ export interface AvatarOwnProps { /** * Unique identifier for the element. * @example 'example-id' */ id?: string; /** * Visible label text. * @example 'Example label' */ label?: string; /** * Corner radius style. Allowed values: `circle`, `rounded`. * @example 'circle' */ shape?: 'circle' | 'rounded'; /** * Component size. Allowed values: `xs`, `sm`, `md`, `lg`, `xl`. * @example 'xs' */ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; /** * URL of the image to display. * @example 'example' */ image?: string; /** * Fallback initials displayed when no image is available or while loading. * @example 'example' */ initials?: string; /** * Makes the avatar a clickable button with hover and focus styles. * @defaultValue false * @example true */ clickable?: boolean; /** 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 AvatarProps = AvatarOwnProps & Omit, keyof AvatarOwnProps | 'children' | 'dangerouslySetInnerHTML'>; export declare const Avatar: React.ForwardRefExoticComponent, "children" | "dangerouslySetInnerHTML" | keyof AvatarOwnProps> & React.RefAttributes>;