import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltSingleEditorModePanelAcceptRequestWireframe } from './VeltSingleEditorModePanelAcceptRequestWireframe/VeltSingleEditorModePanelAcceptRequestWireframe';
import { IVeltSingleEditorModePanelCancelRequestWireframe } from './VeltSingleEditorModePanelCancelRequestWireframe/VeltSingleEditorModePanelCancelRequestWireframe';
import { IVeltSingleEditorModePanelCountdownWireframe } from './VeltSingleEditorModePanelCountdownWireframe/VeltSingleEditorModePanelCountdownWireframe';
import { IVeltSingleEditorModePanelEditHereWireframe } from './VeltSingleEditorModePanelEditHereWireframe/VeltSingleEditorModePanelEditHereWireframe';
import { IVeltSingleEditorModePanelEditorTextWireframe } from './VeltSingleEditorModePanelEditorTextWireframe/VeltSingleEditorModePanelEditorTextWireframe';
import { IVeltSingleEditorModePanelRejectRequestWireframe } from './VeltSingleEditorModePanelRejectRequestWireframe/VeltSingleEditorModePanelRejectRequestWireframe';
import { IVeltSingleEditorModePanelRequestAccessWireframe } from './VeltSingleEditorModePanelRequestAccessWireframe/VeltSingleEditorModePanelRequestAccessWireframe';
import { IVeltSingleEditorModePanelViewerTextWireframe } from './VeltSingleEditorModePanelViewerTextWireframe/VeltSingleEditorModePanelViewerTextWireframe';
export interface IVeltSingleEditorModePanelWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltSingleEditorModePanelWireframe extends React.FC<IVeltSingleEditorModePanelWireframeProps> {
    RequestAccess: IVeltSingleEditorModePanelRequestAccessWireframe;
    RejectRequest: IVeltSingleEditorModePanelRejectRequestWireframe;
    ViewerText: IVeltSingleEditorModePanelViewerTextWireframe;
    EditorText: IVeltSingleEditorModePanelEditorTextWireframe;
    EditHere: IVeltSingleEditorModePanelEditHereWireframe;
    Countdown: IVeltSingleEditorModePanelCountdownWireframe;
    CancelRequest: IVeltSingleEditorModePanelCancelRequestWireframe;
    AcceptRequest: IVeltSingleEditorModePanelAcceptRequestWireframe;
}
declare const VeltSingleEditorModePanelWireframe: IVeltSingleEditorModePanelWireframe;
export default VeltSingleEditorModePanelWireframe;
