import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDimensionableProps } from '../../../Behaviors/Dimensionable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { ChatBegin } from '../../../Types/ChatBegin'; /** * Represents the `IChatElementProps` interface. * * @public */ export interface IChatElementProps extends IDimensionableProps, IAppearanceableProps, IVariantableProps, ISlottableProps { scrollToEnd: boolean; begin: ChatBegin; } //# sourceMappingURL=IChatElementProps.d.ts.map