import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IChatMessageAvatarElementProps` interface. * * @public */ export interface IChatMessageAvatarElementProps extends IAppearanceableProps, IVariantableProps, IDisableableProps { text: string; icon: string; src: string; } //# sourceMappingURL=IChatMessageAvatarElementProps.d.ts.map