import React from 'react';
import { IVeltCommentDialogThreadCardAttachmentsImagePreviewProps } from './VeltCommentDialogThreadCardAttachmentsImagePreview/VeltCommentDialogThreadCardAttachmentsImagePreview';
import { IVeltCommentDialogThreadCardAttachmentsImageDeleteProps } from './VeltCommentDialogThreadCardAttachmentsImageDelete/VeltCommentDialogThreadCardAttachmentsImageDelete';
import { IVeltCommentDialogThreadCardAttachmentsImageDownloadProps } from './VeltCommentDialogThreadCardAttachmentsImageDownload/VeltCommentDialogThreadCardAttachmentsImageDownload';
import { IVeltWireframeCommonProps } from '../../../../../constants';
export interface IVeltCommentDialogThreadCardAttachmentsImageProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogThreadCardAttachmentsImage extends React.FC<IVeltCommentDialogThreadCardAttachmentsImageProps> {
    Preview: React.FC<IVeltCommentDialogThreadCardAttachmentsImagePreviewProps>;
    Delete: React.FC<IVeltCommentDialogThreadCardAttachmentsImageDeleteProps>;
    Download: React.FC<IVeltCommentDialogThreadCardAttachmentsImageDownloadProps>;
}
declare const VeltCommentDialogThreadCardAttachmentsImage: IVeltCommentDialogThreadCardAttachmentsImage;
export default VeltCommentDialogThreadCardAttachmentsImage;
