import React from 'react';
import { IVeltTranscriptionSummaryExpandToggleWireframe } from './VeltTranscriptionSummaryExpandToggleWireframe/VeltTranscriptionSummaryExpandToggleWireframe';
import { IVeltTranscriptionSummaryTextWireframe } from './VeltTranscriptionSummaryTextWireframe/VeltTranscriptionSummaryTextWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltTranscriptionSummaryWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltTranscriptionSummaryWireframe extends React.FC<IVeltTranscriptionSummaryWireframeProps> {
    ExpandToggle: IVeltTranscriptionSummaryExpandToggleWireframe;
    Text: IVeltTranscriptionSummaryTextWireframe;
}
declare const VeltTranscriptionSummaryWireframe: IVeltTranscriptionSummaryWireframe;
export default VeltTranscriptionSummaryWireframe;
