import { FC, HTMLAttributes } from "react";
//#region src/components/data-display/avatar/avatar.d.ts
type Props = {
alt?: string;
fallback?: string;
name?: string;
size?: 'sm' | 'md' | 'lg';
src?: string;
} & Omit, 'role' | 'aria-label' | 'className' | 'style'>;
declare const Avatar: FC;
//#endregion
export { Avatar };