import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
import { IVeltVideoEditorPlayerTimelineOnboardingContentWireframe } from './VeltVideoEditorPlayerTimelineOnboardingContentWireframe/VeltVideoEditorPlayerTimelineOnboardingContentWireframe';
import { IVeltVideoEditorPlayerTimelineOnboardingTextWireframe } from './VeltVideoEditorPlayerTimelineOnboardingTextWireframe/VeltVideoEditorPlayerTimelineOnboardingTextWireframe';
import { IVeltVideoEditorPlayerTimelineOnboardingArrowWireframe } from './VeltVideoEditorPlayerTimelineOnboardingArrowWireframe/VeltVideoEditorPlayerTimelineOnboardingArrowWireframe';
export interface IVeltVideoEditorPlayerTimelineOnboardingWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltVideoEditorPlayerTimelineOnboardingWireframe extends React.FC<IVeltVideoEditorPlayerTimelineOnboardingWireframeProps> {
    Content: IVeltVideoEditorPlayerTimelineOnboardingContentWireframe;
    Text: IVeltVideoEditorPlayerTimelineOnboardingTextWireframe;
    Arrow: IVeltVideoEditorPlayerTimelineOnboardingArrowWireframe;
}
declare const VeltVideoEditorPlayerTimelineOnboardingWireframe: IVeltVideoEditorPlayerTimelineOnboardingWireframe;
export default VeltVideoEditorPlayerTimelineOnboardingWireframe;
