export interface AvatarCellProps { /** Primary label (display name). Seeds Avatar initials when no image. */ name: string | null | undefined; /** Avatar image URL; falls back to initials derived from `name`. */ src?: string; /** Secondary line under the name (email / id / role). Populating this = the "entity-cell" shape. */ subtitle?: string | null; /** Avatar diameter. Default "sm" for table density. */ size?: "sm" | "md" | "lg"; /** Explicit initials override; otherwise derived from `name`. */ fallback?: string; /** Truncate name/subtitle with a title tooltip. */ truncate?: boolean; className?: string; } /** * Avatar + name (+ optional subtitle) cell for table columns — the sibling of * `TextCell`/`BadgeCell`. Reuses the `Avatar` atom (initials derived from `name`), * so consumers drop their hand-rolled avatar circles. Null/empty name → "—". */ export declare function AvatarCell({ name, src, subtitle, size, fallback, truncate, className }: AvatarCellProps): import("react").JSX.Element; //# sourceMappingURL=AvatarCell.d.ts.map