import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltRecorderPlayerAudioContainerWireframe } from './VeltRecorderPlayerAudioContainerWireframe/VeltRecorderPlayerAudioContainerWireframe';
import { IVeltRecorderPlayerVideoContainerWireframe } from './VeltRecorderPlayerVideoContainerWireframe/VeltRecorderPlayerVideoContainerWireframe';
export interface IVeltRecorderPlayerWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderPlayerWireframe extends React.FC<IVeltRecorderPlayerWireframeProps> {
    AudioContainer: IVeltRecorderPlayerAudioContainerWireframe;
    VideoContainer: IVeltRecorderPlayerVideoContainerWireframe;
}
declare const VeltRecorderPlayerWireframe: IVeltRecorderPlayerWireframe;
export default VeltRecorderPlayerWireframe;
