import type { AllHTMLAttributes } from 'react'; import { type AvatarContainerProps } from './AvatarContainer'; export type AvatarProps = AvatarContainerProps & { rounded?: boolean; objectFit?: boolean; url: string; } & Omit, 'size'>; declare const Avatar: ({ size, rounded, objectFit, url, className, alt, ...props }: AvatarProps) => import("react/jsx-runtime").JSX.Element; export default Avatar; //# sourceMappingURL=Avatar.d.ts.map