/// interface IAvatarProps { user: { id?: string; username: string; name?: string; avatarUrl: string; badges?: any[]; subscriptionSince?: string | null; }; className?: string; } export declare const AvatarContainer: import("styled-components").StyledComponent<"div", any, import("../Element").IElementProps & { as: string; }, "as">; export declare const AvatarImage: import("styled-components").StyledComponent<"img", any, {}, never>; export declare const Pro: import("styled-components").StyledComponent<"div", any, import("../Element").IElementProps & { as: string; } & import("../Text").ITextProps & { size: number; weight: string; }, "size" | "weight" | "as">; export declare const Avatar: ({ user, ...props }: IAvatarProps) => JSX.Element; export {};