import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltMediaSourceSettingsDividerWireframe } from '../VeltMediaSourceSettingsDividerWireframe/VeltMediaSourceSettingsDividerWireframe';
import { IVeltMediaSourceSettingsOptionsWireframe } from '../VeltMediaSourceSettingsOptionsWireframe/VeltMediaSourceSettingsOptionsWireframe';
import { IVeltMediaSourceSettingsSelectedLabelWireframe } from '../VeltMediaSourceSettingsSelectedLabelWireframe/VeltMediaSourceSettingsSelectedLabelWireframe';
import { IVeltMediaSourceSettingsToggleIconWireframe } from '../VeltMediaSourceSettingsToggleIconWireframe/VeltMediaSourceSettingsToggleIconWireframe';
export interface IVeltMediaSourceSettingsVideoWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltMediaSourceSettingsVideoWireframe extends React.FC<IVeltMediaSourceSettingsVideoWireframeProps> {
    ToggleIcon: IVeltMediaSourceSettingsToggleIconWireframe;
    SelectedLabel: IVeltMediaSourceSettingsSelectedLabelWireframe;
    Options: IVeltMediaSourceSettingsOptionsWireframe;
    Divider: IVeltMediaSourceSettingsDividerWireframe;
}
declare const VeltMediaSourceSettingsVideoWireframe: IVeltMediaSourceSettingsVideoWireframe;
export default VeltMediaSourceSettingsVideoWireframe;
