import { ColorsType, IBoolean, MainSizesType, Positions, RoundedSizesTypes } from '../../types'; import { AvatarStatus } from './AvatarTypes'; export interface AvatarTheme { root: AvatarRootTheme; group: string; groupCounter: string; } export interface AvatarRootTheme { base: string; bordered: string; color: ColorsType; img: AvatarImageTheme; initials: AvatarInitialsTheme; rounded: RoundedSizesTypes; size: MainSizesType; stacked: string; status: AvatarStatus & { base: string; }; statusPosition: Positions; } export interface AvatarImageTheme extends IBoolean { base: string; placeholder: string; } export interface AvatarInitialsTheme { base: string; text: string; } export declare const avatarTheme: AvatarTheme; //# sourceMappingURL=theme.d.ts.map