import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltCommentDialogStatusDropdownContentItemIconWireframeProps } from './VeltCommentDialogStatusDropdownContentItemIconWireframe/VeltCommentDialogStatusDropdownContentItemIconWireframe';
import { IVeltCommentDialogStatusDropdownContentItemNameWireframeProps } from './VeltCommentDialogStatusDropdownContentItemNameWireframe/VeltCommentDialogStatusDropdownContentItemNameWireframe';
export interface IVeltCommentDialogStatusDropdownContentItemWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogStatusDropdownContentItemWireframe extends React.FC<IVeltCommentDialogStatusDropdownContentItemWireframeProps> {
    Icon: React.FC<IVeltCommentDialogStatusDropdownContentItemIconWireframeProps>;
    Name: React.FC<IVeltCommentDialogStatusDropdownContentItemNameWireframeProps>;
}
declare const VeltCommentDialogStatusDropdownContentItemWireframe: IVeltCommentDialogStatusDropdownContentItemWireframe;
export default VeltCommentDialogStatusDropdownContentItemWireframe;
