import React from 'react';
import { IVeltCommentDialogComposerAttachmentsImagePreviewProps } from './VeltCommentDialogComposerAttachmentsImagePreview/VeltCommentDialogComposerAttachmentsImagePreview';
import { IVeltCommentDialogComposerAttachmentsImageDeleteProps } from './VeltCommentDialogComposerAttachmentsImageDelete/VeltCommentDialogComposerAttachmentsImageDelete';
import { IVeltCommentDialogComposerAttachmentsImageDownloadProps } from './VeltCommentDialogComposerAttachmentsImageDownload/VeltCommentDialogComposerAttachmentsImageDownload';
import { IVeltCommentDialogComposerAttachmentsImageLoadingProps } from './VeltCommentDialogComposerAttachmentsImageLoading/VeltCommentDialogComposerAttachmentsImageLoading';
import { IVeltWireframeCommonProps } from '../../../../../constants';
export interface IVeltCommentDialogComposerAttachmentsImageProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogComposerAttachmentsImage extends React.FC<IVeltCommentDialogComposerAttachmentsImageProps> {
    Preview: React.FC<IVeltCommentDialogComposerAttachmentsImagePreviewProps>;
    Delete: React.FC<IVeltCommentDialogComposerAttachmentsImageDeleteProps>;
    Download: React.FC<IVeltCommentDialogComposerAttachmentsImageDownloadProps>;
    Loading: React.FC<IVeltCommentDialogComposerAttachmentsImageLoadingProps>;
}
declare const VeltCommentDialogComposerAttachmentsImage: IVeltCommentDialogComposerAttachmentsImage;
export default VeltCommentDialogComposerAttachmentsImage;
