import React from 'react';
import { IVeltCommentDialogThreadCardAttachmentsOtherDeleteProps } from './VeltCommentDialogThreadCardAttachmentsOtherDelete/VeltCommentDialogThreadCardAttachmentsOtherDelete';
import { IVeltCommentDialogThreadCardAttachmentsOtherDownloadProps } from './VeltCommentDialogThreadCardAttachmentsOtherDownload/VeltCommentDialogThreadCardAttachmentsOtherDownload';
import { IVeltCommentDialogThreadCardAttachmentsOtherIconProps } from './VeltCommentDialogThreadCardAttachmentsOtherIcon/VeltCommentDialogThreadCardAttachmentsOtherIcon';
import { IVeltCommentDialogThreadCardAttachmentsOtherNameProps } from './VeltCommentDialogThreadCardAttachmentsOtherName/VeltCommentDialogThreadCardAttachmentsOtherName';
import { IVeltCommentDialogThreadCardAttachmentsOtherSizeProps } from './VeltCommentDialogThreadCardAttachmentsOtherSize/VeltCommentDialogThreadCardAttachmentsOtherSize';
import { IVeltWireframeCommonProps } from '../../../../../constants';
export interface IVeltCommentDialogThreadCardAttachmentsOtherProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogThreadCardAttachmentsOther extends React.FC<IVeltCommentDialogThreadCardAttachmentsOtherProps> {
    Icon: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherIconProps>;
    Delete: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherDeleteProps>;
    Download: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherDownloadProps>;
    Name: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherNameProps>;
    Size: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherSizeProps>;
}
declare const VeltCommentDialogThreadCardAttachmentsOther: IVeltCommentDialogThreadCardAttachmentsOther;
export default VeltCommentDialogThreadCardAttachmentsOther;
