import { type PropType, type StyleValue } from 'vue'; export interface AvatarProps { rootStyle?: StyleValue; rootClass?: string; shape?: 'circle' | 'square'; size?: string; iconSize?: string; background?: string; color?: string; src?: string; } export declare const avatarProps: { rootStyle: PropType; rootClass: StringConstructor; shape: { type: PropType<"circle" | "square" | undefined>; default: string; }; size: StringConstructor; iconSize: StringConstructor; background: StringConstructor; color: StringConstructor; src: StringConstructor; }; export interface AvatarSlots { default(props: Record): any; extra(props: Record): any; }