type Props = { accessibilityLabel?: string; color?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10; isHovered?: boolean; isPressed?: boolean; name: string; }; export default function DefaultAvatar({ accessibilityLabel, color, isHovered, isPressed, name, }: Props): import("react/jsx-runtime").JSX.Element; export {};