import React from 'react';
import { IVeltTranscriptionCloseButtonWireframe } from '../../VeltTranscriptionCloseButtonWireframe/VeltTranscriptionCloseButtonWireframe';
import { IVeltTranscriptionContentWireframe } from '../../VeltTranscriptionContentWireframe/VeltTranscriptionContentWireframe';
import { IVeltTranscriptionCopyLinkWireframe } from '../../VeltTranscriptionCopyLinkWireframe/VeltTranscriptionCopyLinkWireframe';
import { IVeltTranscriptionSummaryWireframe } from '../VeltTranscriptionSummaryWireframe';
import { IVeltWireframeCommonProps } from '../../../../constants';
export interface IVeltTranscriptionPanelWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltTranscriptionPanelWireframe extends React.FC<IVeltTranscriptionPanelWireframeProps> {
    CloseButton: IVeltTranscriptionCloseButtonWireframe;
    CopyLink: IVeltTranscriptionCopyLinkWireframe;
    Summary: IVeltTranscriptionSummaryWireframe;
    Content: IVeltTranscriptionContentWireframe;
}
declare const VeltTranscriptionPanelWireframe: IVeltTranscriptionPanelWireframe;
export default VeltTranscriptionPanelWireframe;
