import * as React from 'react'; import type { ButtonHTMLAttributes, JSX } from 'react'; import type { Severity } from '../../constants/severity.types'; import type { Size } from '../../types/sizes.types'; interface AvatarProps extends Partial> { image?: React.ReactNode; imgSrc?: string; imgAlt?: string; fullName?: string; color?: Severity; button?: boolean; size?: Size; fullWidth?: boolean; photographerCredit?: string; } export declare function Avatar({ image, imgSrc, imgAlt, fullName, color, button, size, className, fullWidth, photographerCredit, ...rest }: AvatarProps): JSX.Element; export {};