import React from 'react';
import { IVeltCommentDialogPriorityDropdownContentWireframe } from '../../VeltCommentDialogPriorityDropdownContentWireframe/VeltCommentDialogPriorityDropdownContentWireframe';
import { IVeltCommentDialogPriorityDropdownTriggerWireframe } from '../../VeltCommentDialogPriorityDropdownTriggerWireframe/VeltCommentDialogPriorityDropdownTriggerWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltCommentDialogPriorityProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogPriority extends React.FC<IVeltCommentDialogPriorityProps> {
    Content: IVeltCommentDialogPriorityDropdownContentWireframe;
    Trigger: IVeltCommentDialogPriorityDropdownTriggerWireframe;
}
declare const VeltCommentDialogPriority: IVeltCommentDialogPriority;
export default VeltCommentDialogPriority;
