import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentsSidebarStatusDropdownContentWireframe } from './VeltCommentsSidebarStatusDropdownContentWireframe/VeltCommentsSidebarStatusDropdownContentWireframe';
import { IVeltCommentsSidebarStatusDropdownTriggerWireframe } from './VeltCommentsSidebarStatusDropdownTriggerWireframe/VeltCommentsSidebarStatusDropdownTriggerWireframe';
export interface IVeltCommentsSidebarStatusDropdownWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentsSidebarStatusDropdownWireframe extends React.FC<IVeltCommentsSidebarStatusDropdownWireframeProps> {
    Trigger: IVeltCommentsSidebarStatusDropdownTriggerWireframe;
    Content: IVeltCommentsSidebarStatusDropdownContentWireframe;
}
declare const VeltCommentsSidebarStatusDropdownWireframe: IVeltCommentsSidebarStatusDropdownWireframe;
export default VeltCommentsSidebarStatusDropdownWireframe;
