import * as React from "react"; interface SquareAvatarProps extends React.HTMLAttributes { src?: string; alt?: string; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; /** Exact pixel size (width & height). Overrides the `size` bucket dimensions — * for callers with a numeric-px API (e.g. UserDisplay/MSPDisplay). */ sizePx?: number; fallback?: string; variant?: 'square' | 'round'; /** Override the initials-fallback styling (font size/color). Merged over the * defaults (`text-xs font-medium text-ods-text-primary`) via tailwind-merge, * so callers can shrink/recolor the initials for compact avatars. */ initialsClassName?: string; } declare const SquareAvatar: React.NamedExoticComponent>; export { SquareAvatar }; //# sourceMappingURL=square-avatar.d.ts.map