import { default as React } from 'react'; export interface AvatarProps { /** aria-label for accessibility */ label: string; /** Fixed height and width of the avatar. Default: "s". */ size?: "xs" | "s" | "m"; /** Style variant of avatar */ kind?: "primary" | "tonal"; /** String to display in the avatar. If imgurl is provided, this will be ignored. */ initials?: string; /** Optional: URL of the image to display in the avatar. If provided, initials will be ignored. */ imgurl?: string; /** Optional: URL to navigate to when the avatar is clicked */ linkurl?: string; } declare const Avatar: ({ label, size, kind, initials, imgurl, linkurl, }: AvatarProps) => React.JSX.Element; export default Avatar; //# sourceMappingURL=index.d.ts.map