export declare const AVATAR_SHAPES: readonly ["circle", "square", "rounded"];
export type AvatarShape = typeof AVATAR_SHAPES[number];
export interface AvatarConfig {
    name: string;
    size?: number;
    bgColor?: string;
    textColor?: string;
    shape?: AvatarShape;
    imageUrl?: string;
}
