import React from "react"; import { IVeltCommentBubbleAvatarProps } from "./VeltCommentBubbleAvatar/VeltCommentBubbleAvatar"; import { IVeltCommentBubbleCommentsCountProps } from "./VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount"; import { IVeltCommentBubbleUnreadIconProps } from "./VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon"; export interface IVeltCommentBubbleWireframeProps extends React.DetailedHTMLProps, HTMLElement> { variant?: string; } export interface IVeltCommentBubbleWireframe extends React.FC { Avatar: React.FC; CommentsCount: React.FC; UnreadIcon: React.FC; } declare const VeltCommentBubbleWireframe: IVeltCommentBubbleWireframe; export default VeltCommentBubbleWireframe;