import React from 'react';
import { IVeltTranscriptionPanelContainerWireframe } from '../VeltTranscriptionPanelContainerWireframe/VeltTranscriptionPanelContainerWireframe';
import { IVeltTranscriptionPanelWireframe } from '../VeltTranscriptionPanelWireframe/VeltTranscriptionPanelWireframe';
import { IVeltTranscriptionButtonWireframe } from '../VeltTranscriptionButtonWireframe/VeltTranscriptionButtonWireframe';
import { IVeltTranscriptionTooltipWireframe } from '../VeltTranscriptionTooltipWireframe/VeltTranscriptionTooltipWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltTranscriptionFloatingModeWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltTranscriptionFloatingModeWireframe extends React.FC<IVeltTranscriptionFloatingModeWireframeProps> {
    Button: IVeltTranscriptionButtonWireframe;
    Tooltip: IVeltTranscriptionTooltipWireframe;
    PanelContainer: IVeltTranscriptionPanelContainerWireframe;
    Panel: IVeltTranscriptionPanelWireframe;
}
declare const VeltTranscriptionFloatingModeWireframe: IVeltTranscriptionFloatingModeWireframe;
export default VeltTranscriptionFloatingModeWireframe;
