import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IBusyableProps } from '../../../Behaviors/Busyable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IChatMessageElementProps` interface. * * @public */ export interface IChatMessageElementProps extends IVariantableProps, IAppearanceableProps, IDisableableProps, ITextFormattableProps, IBusyableProps, IValueableProps, ISlottableProps { author: string; text: string; at: string; reply: boolean; } //# sourceMappingURL=IChatMessageElementProps.d.ts.map