import { type ReactNode } from 'react'; import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for the Avatar Label * @public */ export interface AvatarLabelProps extends StylingProps, DataTestId { /** Elements to be displayed in the Avatar Label slot. */ children: ReactNode; } /** * Avatar Label component * @public */ export declare const Label: (props: AvatarLabelProps & import("react").RefAttributes) => React.ReactElement | null;