import { MouseEventHandler as F } from 'react'; import { PropsWithElementAttributes } from '../utils'; export declare type AvatarProps = PropsWithElementAttributes<{ alt?: string; circle?: boolean; image?: T extends HTMLImageElement ? string : never; onClick?: F; rounded?: boolean; size?: number; }>; export declare function Avatar({ size, image, alt, rounded, circle, onClick, className, style, }: AvatarProps): JSX.Element; //# sourceMappingURL=Avatar.d.ts.map