import { type ReactNode, ElementType, type ReactElement } from 'react'; import type { PolymorphicComponentProps } from '@dynatrace/strato-components/core'; import type { AvatarOwnProps } from '../avatar/Avatar.js'; /** * Accepted properties for the Avatar Item * @public */ export interface AvatarGroupItemOwnProps extends AvatarOwnProps { /** * The text that is shown in the tooltip when hovering over an AvatarGroup.Item. */ tooltipText: ReactNode; } /** * @public */ export type AvatarGroupItemProps = PolymorphicComponentProps; /** * AvatarGroup Item component * @public */ export declare const Item: (props: AvatarGroupItemProps) => ReactElement | null;