import type { Appearance } from '../../../Types/Appearance'; import type { Size } from '../../../Types/Size'; import type { Variant } from '../../../Types/Variant'; /** * Interface for properties inherited by child AvatarElements. * * @public */ export interface IAvatarGroupInherited { /** * Inherited size. */ size?: Size; /** * Inherited disabled state. */ disabled?: boolean; /** * Inherited variant. */ variant?: Variant; /** * Inherited appearance. */ appearance?: Appearance; } /** * Context for AvatarGroup → Avatar inheritance. * * @public */ export declare const AVATAR_GROUP_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=AvatarGroupInheritanceContext.d.ts.map