import React from "react";
import { IVeltCommentDialogThreadCardAttachments } from "./VeltCommentDialogThreadCardAttachments/VeltCommentDialogThreadCardAttachments";
import { IVeltCommentDialogThreadCardAvatarProps } from "./VeltCommentDialogThreadCardAvatar/VeltCommentDialogThreadCardAvatar";
import { IVeltCommentDialogThreadCardDeviceTypeProps } from "./VeltCommentDialogThreadCardDeviceType/VeltCommentDialogThreadCardDeviceType";
import { IVeltCommentDialogThreadCardDraftProps } from "./VeltCommentDialogThreadCardDraft/VeltCommentDialogThreadCardDraft";
import { IVeltCommentDialogThreadCardMessage } from "./VeltCommentDialogThreadCardMessage/VeltCommentDialogThreadCardMessage";
import { IVeltCommentDialogThreadCardNameProps } from "./VeltCommentDialogThreadCardName/VeltCommentDialogThreadCardName";
import { IVeltCommentDialogThreadCardOptions } from "./VeltCommentDialogThreadCardOptions/VeltCommentDialogThreadCardOptions";
import { IVeltCommentDialogThreadCardReactionToolProps } from "./VeltCommentDialogThreadCardReactionTool/VeltCommentDialogThreadCardReactionTool";
import { IVeltCommentDialogThreadCardReactionPinProps } from "./VeltCommentDialogThreadCardReactionPin/VeltCommentDialogThreadCardReactionPin";
import { IVeltCommentDialogThreadCardAssignButtonProps } from "./VeltCommentDialogThreadCardAssignButton/VeltCommentDialogThreadCardAssignButton";
import { IVeltCommentDialogThreadCardReactionsProps } from "./VeltCommentDialogThreadCardReactions/VeltCommentDialogThreadCardReactions";
import { IVeltCommentDialogThreadCardRecordingsProps } from "./VeltCommentDialogThreadCardRecordings/VeltCommentDialogThreadCardRecordings";
import { IVeltCommentDialogThreadCardTimeProps } from "./VeltCommentDialogThreadCardTime/VeltCommentDialogThreadCardTime";
import { IVeltCommentDialogThreadCardUnreadProps } from "./VeltCommentDialogThreadCardUnread/VeltCommentDialogThreadCardUnread";
import { IVeltCommentDialogThreadCardSeenDropdown } from "./VeltCommentDialogThreadCardSeenDropdown/VeltCommentDialogThreadCardSeenDropdown";
import { IVeltCommentDialogThreadCardEdited } from "./VeltCommentDialogThreadCardEdited/VeltCommentDialogThreadCardEdited";
import { IVeltWireframeCommonProps } from "../../../constants";
import { IVeltCommentDialogThreadCardReply } from "./VeltCommentDialogThreadCardReply/VeltCommentDialogThreadCardReply";
import { IVeltCommentDialogThreadCardEditComposer } from "./VeltCommentDialogThreadCardEditComposer/VeltCommentDialogThreadCardEditComposer";
export interface IVeltCommentDialogThreadCardProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogThreadCard extends React.FC<IVeltCommentDialogThreadCardProps> {
    Avatar: React.FC<IVeltCommentDialogThreadCardAvatarProps>;
    DeviceType: React.FC<IVeltCommentDialogThreadCardDeviceTypeProps>;
    Attachments: IVeltCommentDialogThreadCardAttachments;
    Message: IVeltCommentDialogThreadCardMessage;
    Name: React.FC<IVeltCommentDialogThreadCardNameProps>;
    Options: IVeltCommentDialogThreadCardOptions;
    Reactions: React.FC<IVeltCommentDialogThreadCardReactionsProps>;
    ReactionTool: React.FC<IVeltCommentDialogThreadCardReactionToolProps>;
    ReactionPin: React.FC<IVeltCommentDialogThreadCardReactionPinProps>;
    AssignButton: React.FC<IVeltCommentDialogThreadCardAssignButtonProps>;
    Recordings: React.FC<IVeltCommentDialogThreadCardRecordingsProps>;
    Time: React.FC<IVeltCommentDialogThreadCardTimeProps>;
    Unread: React.FC<IVeltCommentDialogThreadCardUnreadProps>;
    Draft: React.FC<IVeltCommentDialogThreadCardDraftProps>;
    SeenDropdown: IVeltCommentDialogThreadCardSeenDropdown;
    Edited: IVeltCommentDialogThreadCardEdited;
    Reply: IVeltCommentDialogThreadCardReply;
    EditComposer: IVeltCommentDialogThreadCardEditComposer;
}
declare const VeltCommentDialogThreadCard: IVeltCommentDialogThreadCard;
export default VeltCommentDialogThreadCard;
