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