import React from 'react';
import { IVeltTranscriptionPanelWireframe } from '../VeltTranscriptionPanelWireframe/VeltTranscriptionPanelWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltTranscriptionEmbedModeWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltTranscriptionEmbedModeWireframe extends React.FC<IVeltTranscriptionEmbedModeWireframeProps> {
    Panel: IVeltTranscriptionPanelWireframe;
}
declare const VeltTranscriptionEmbedModeWireframe: IVeltTranscriptionEmbedModeWireframe;
export default VeltTranscriptionEmbedModeWireframe;
