import { AvatarPosition, AvatarSize, AvatarStatus } from '@sanity/ui'; import React from 'react'; import type { User } from '@sanity/types'; declare type LegacyAvatarSize = 'small' | 'medium' | 'large'; interface BaseProps { position?: AvatarPosition; animateArrowFrom?: AvatarPosition; size?: LegacyAvatarSize | AvatarSize; status?: AvatarStatus; tone?: 'navbar'; } export declare type Props = BaseProps & UserProps & { withTooltip?: boolean; }; interface LoadedUserProps extends BaseProps { user: User; } interface UnloadedUserProps extends BaseProps { userId: string; } declare type UserProps = LoadedUserProps | UnloadedUserProps; export declare function UserAvatar(props: Props): React.JSX.Element; export {}; //# sourceMappingURL=UserAvatar.d.ts.map