import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISizeableProps } from '../../../Behaviors/Sizeable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IAvatarGroupElementProps` interface. * * @public */ export interface IAvatarGroupElementProps extends IDisableableProps, ISizeableProps, IVariantableProps, IAppearanceableProps { maxLength: number; } //# sourceMappingURL=IAvatarGroupElementProps.d.ts.map