import * as React from 'react'; /** Mirrors SquareAvatar's size buckets (sm 32 / md 40 / lg 48). */ declare const SIZE_CLASSES: { readonly sm: "h-8 w-8"; readonly md: "h-10 w-10"; readonly lg: "h-12 w-12"; }; export interface DeletedUserAvatarProps { size?: keyof typeof SIZE_CLASSES; className?: string; /** * Accessible name for the placeholder. Pass the user's identity when known * (e.g. "Deleted user: Jane Doe") so assistive technology doesn't lose who * the row refers to. Falls back to the generic "Deleted user". */ accessibleLabel?: string; } /** * Red round user-x placeholder shown instead of the avatar for deleted users * (accounts with status DELETED / SELF_DELETED). A dedicated component — not a * `SquareAvatar` prop — because `SquareAvatar`'s only fallback is text * initials, and initials for a deleted account is exactly what the design * replaces. */ export declare function DeletedUserAvatar({ size, className, accessibleLabel }: DeletedUserAvatarProps): React.JSX.Element; export {}; //# sourceMappingURL=deleted-user-avatar.d.ts.map