import React from 'react';
import { IVeltCommentDialogComposerAttachmentsInvalid } from './VeltCommentDialogComposerAttachmentsInvalid/VeltCommentDialogComposerAttachmentsInvalid';
import { IVeltCommentDialogComposerAttachmentsSelected } from './VeltCommentDialogComposerAttachmentsSelected/VeltCommentDialogComposerAttachmentsSelected';
import { IVeltWireframeCommonProps } from '../../../../constants';
export interface IVeltCommentDialogComposerAttachmentsProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogComposerAttachments extends React.FC<IVeltCommentDialogComposerAttachmentsProps> {
    Invalid: IVeltCommentDialogComposerAttachmentsInvalid;
    Selected: IVeltCommentDialogComposerAttachmentsSelected;
}
declare const VeltCommentDialogComposerAttachments: IVeltCommentDialogComposerAttachments;
export default VeltCommentDialogComposerAttachments;
