import { Color } from '../../tokens/colors.js'; import { Style } from 'inlines'; export type AvatarProps = { src?: string; disabled?: boolean; color?: Color; size?: 'regular' | 'small'; label?: string; spotlight?: boolean; style?: Style; }; export declare const Avatar: ({ src, color, disabled, spotlight, size, label, style, }: AvatarProps) => import("react/jsx-runtime").JSX.Element;