import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IStickableProps } from '../../../Behaviors/Stickable'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { IContentAlignableProps } from '../../../Behaviors/ContentAlignable'; import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; /** * Represents the `IChatMarkerElementProps` interface. * * @public */ export interface IChatMarkerElementProps extends IVariantableProps, IOrientableProps, IVariantableProps, IStickableProps, ITextFormattableProps, IContentAlignableProps, IAppearanceableProps { text: string; icon: string; } //# sourceMappingURL=IChatMarkerElementProps.d.ts.map