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