import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentDialogStatusDropdownTriggerArrowWireframeProps } from './VeltCommentDialogStatusDropdownTriggerArrowWireframe/VeltCommentDialogStatusDropdownTriggerArrowWireframe';
import { IVeltCommentDialogStatusDropdownTriggerIconWireframeProps } from './VeltCommentDialogStatusDropdownTriggerIconWireframe/VeltCommentDialogStatusDropdownTriggerIconWireframe';
import { IVeltCommentDialogStatusDropdownTriggerNameWireframeProps } from './VeltCommentDialogStatusDropdownTriggerNameWireframe/VeltCommentDialogStatusDropdownTriggerNameWireframe';
export interface IVeltCommentDialogStatusDropdownTriggerWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogStatusDropdownTriggerWireframe extends React.FC<IVeltCommentDialogStatusDropdownTriggerWireframeProps> {
    Arrow: React.FC<IVeltCommentDialogStatusDropdownTriggerArrowWireframeProps>;
    Name: React.FC<IVeltCommentDialogStatusDropdownTriggerNameWireframeProps>;
    Icon: React.FC<IVeltCommentDialogStatusDropdownTriggerIconWireframeProps>;
}
declare const VeltCommentDialogStatusDropdownTriggerWireframe: IVeltCommentDialogStatusDropdownTriggerWireframe;
export default VeltCommentDialogStatusDropdownTriggerWireframe;
