import * as React from 'react';

/**
 * Avatar — from @kibrisyazilim/design-system@0.1.0.
 */
export interface AvatarProps {
  /** Image URL. Falls back to initials if it fails to load or is omitted. */
  src?: string;
  /** Person or entity name. Drives the initials and the accessible name. */
  name?: string;
  size?: "xs" | "sm" | "md" | "lg" | "xl";
  shape?: "circle" | "square";
  className?: string;
  id?: string;
  style?: CSSProperties;
}

export declare const Avatar: React.ComponentType<AvatarProps>;
