import React from 'react';
import { IVeltCommentDialogStatusDropdownContentWireframe } from '../../VeltCommentDialogStatusDropdownContentWireframe/VeltCommentDialogStatusDropdownContentWireframe';
import { IVeltCommentDialogStatusDropdownTriggerWireframe } from '../../VeltCommentDialogStatusDropdownTriggerWireframe/VeltCommentDialogStatusDropdownTriggerWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltCommentDialogStatusProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogStatus extends React.FC<IVeltCommentDialogStatusProps> {
    Content: IVeltCommentDialogStatusDropdownContentWireframe;
    Trigger: IVeltCommentDialogStatusDropdownTriggerWireframe;
}
declare const VeltCommentDialogStatus: IVeltCommentDialogStatus;
export default VeltCommentDialogStatus;
