import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { borderRadius: string; fontSize: string; fontWeight: string; border: string; heightTiny: string; heightSmall: string; heightMedium: string; heightLarge: string; textColor: string; iconColor: string; color: string; iconSize: string; }; export type AvatarThemeVars = ReturnType; declare const avatarLight: Theme<'Avatar', AvatarThemeVars>; export default avatarLight; export type AvatarTheme = typeof avatarLight; export type AvatarGroupTheme = typeof avatarLight;