import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentDialogOptionsDropdownContentAssignWireframeProps } from './VeltCommentDialogOptionsDropdownContentAssignWireframe/VeltCommentDialogOptionsDropdownContentAssignWireframe';
import { IVeltCommentDialogOptionsDropdownContentDeleteWireframe } from './VeltCommentDialogOptionsDropdownContentDeleteWireframe/VeltCommentDialogOptionsDropdownContentDeleteWireframe';
import { IVeltCommentDialogOptionsDropdownContentEditWireframeProps } from './VeltCommentDialogOptionsDropdownContentEditWireframe/VeltCommentDialogOptionsDropdownContentEditWireframe';
import { IVeltCommentDialogOptionsDropdownContentMakePrivateWireframe } from './VeltCommentDialogOptionsDropdownContentMakePrivateWireframe/VeltCommentDialogOptionsDropdownContentMakePrivateWireframe';
import { IVeltCommentDialogOptionsDropdownContentNotificationWireframe } from './VeltCommentDialogOptionsDropdownContentNotificationWireframe/VeltCommentDialogOptionsDropdownContentNotificationWireframe';
export interface IVeltCommentDialogOptionsDropdownContentWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogOptionsDropdownContentWireframe extends React.FC<IVeltCommentDialogOptionsDropdownContentWireframeProps> {
    Assign: React.FC<IVeltCommentDialogOptionsDropdownContentAssignWireframeProps>;
    MakePrivate: IVeltCommentDialogOptionsDropdownContentMakePrivateWireframe;
    Delete: IVeltCommentDialogOptionsDropdownContentDeleteWireframe;
    Edit: React.FC<IVeltCommentDialogOptionsDropdownContentEditWireframeProps>;
    Notification: IVeltCommentDialogOptionsDropdownContentNotificationWireframe;
}
declare const VeltCommentDialogOptionsDropdownContentWireframe: IVeltCommentDialogOptionsDropdownContentWireframe;
export default VeltCommentDialogOptionsDropdownContentWireframe;
