import type { CSSProperties } from 'react';
import type { AgentColor, WidgetIcon } from '../../sdk-types';
export interface AgentAvatarProps {
    name?: string;
    color?: AgentColor;
    icon?: WidgetIcon;
    size?: number;
    style?: CSSProperties;
}
export declare function AgentAvatar({ name, color, icon, size, style }: AgentAvatarProps): import("react/jsx-runtime").JSX.Element;
