import React from "react";
import { IVeltCommentDialogComposerActionButtonProps } from "./VeltCommentDialogComposerActionButton/VeltCommentDialogComposerActionButton";
import { IVeltCommentDialogComposerAssignUserProps } from "./VeltCommentDialogComposerAssignUser/VeltCommentDialogComposerAssignUser";
import { IVeltCommentDialogComposerAttachments } from "./VeltCommentDialogComposerAttachments/VeltCommentDialogComposerAttachments";
import { IVeltCommentDialogComposerInputProps } from "./VeltCommentDialogComposerInput/VeltCommentDialogComposerInput";
import { IVeltCommentDialogComposerRecordingsProps } from "./VeltCommentDialogComposerRecordings/VeltCommentDialogComposerRecordings";
import { IVeltCommentDialogComposerPrivateBadgeProps } from "./VeltCommentDialogComposerPrivateBadge/VeltCommentDialogComposerPrivateBadge";
import { IVeltCommentDialogComposerAvatarProps } from "./VeltCommentDialogComposerAvatar/VeltCommentDialogComposerAvatar";
import { IVeltCommentDialogComposerFormatToolbar } from "./VeltCommentDialogComposerFormatToolbar/VeltCommentDialogComposerFormatToolbar";
import { IVeltWireframeCommonProps } from "../../../constants";
export interface IVeltCommentDialogComposerProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogComposer extends React.FC<IVeltCommentDialogComposerProps> {
    ActionButton: React.FC<IVeltCommentDialogComposerActionButtonProps>;
    AssignUser: React.FC<IVeltCommentDialogComposerAssignUserProps>;
    Attachments: IVeltCommentDialogComposerAttachments;
    Input: React.FC<IVeltCommentDialogComposerInputProps>;
    Recordings: React.FC<IVeltCommentDialogComposerRecordingsProps>;
    PrivateBadge: React.FC<IVeltCommentDialogComposerPrivateBadgeProps>;
    Avatar: React.FC<IVeltCommentDialogComposerAvatarProps>;
    FormatToolbar: IVeltCommentDialogComposerFormatToolbar;
}
declare const VeltCommentDialogComposer: IVeltCommentDialogComposer;
export default VeltCommentDialogComposer;
