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'; import { IVeltCommentDialogOptionsDropdownContentMarkAsReadWireframeProps } from './VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe/VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe'; export interface IVeltCommentDialogOptionsDropdownContentWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltCommentDialogOptionsDropdownContentWireframe extends React.FC { Assign: React.FC; MakePrivate: IVeltCommentDialogOptionsDropdownContentMakePrivateWireframe; Delete: IVeltCommentDialogOptionsDropdownContentDeleteWireframe; Edit: React.FC; Notification: IVeltCommentDialogOptionsDropdownContentNotificationWireframe; MarkAsRead: React.FC; } declare const VeltCommentDialogOptionsDropdownContentWireframe: IVeltCommentDialogOptionsDropdownContentWireframe; export default VeltCommentDialogOptionsDropdownContentWireframe;