import React from 'react';
import { IVeltCommentDialogThreadCardAttachmentsImage } from './VeltCommentDialogThreadCardAttachmentsImage/VeltCommentDialogThreadCardAttachmentsImage';
import { IVeltCommentDialogThreadCardAttachmentsOther } from './VeltCommentDialogThreadCardAttachmentsOther/VeltCommentDialogThreadCardAttachmentsOther';
import { IVeltWireframeCommonProps } from '../../../../constants';
export interface IVeltCommentDialogThreadCardAttachmentsProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogThreadCardAttachments extends React.FC<IVeltCommentDialogThreadCardAttachmentsProps> {
    Other: IVeltCommentDialogThreadCardAttachmentsOther;
    Image: IVeltCommentDialogThreadCardAttachmentsImage;
}
declare const VeltCommentDialogThreadCardAttachments: IVeltCommentDialogThreadCardAttachments;
export default VeltCommentDialogThreadCardAttachments;
