import * as React from "react"; export type GoBoltUser = { first_name: string; last_name: string; image_url?: string; url?: string; }; export interface AvatarProps { size?: number; icon?: React.ReactNode; shape?: "circle" | "square"; children?: string; backgroundColor?: string; user?: GoBoltUser | null; url?: string; alt?: string; } declare const Avatar: ({ size, shape, children, backgroundColor, user, url, alt, ...rest }: AvatarProps) => import("react/jsx-runtime").JSX.Element; export default Avatar;