import React from 'react'; export declare type VideoSectionProps = Readonly<{ title: string; sources: Array; children: React.ReactNode; className?: string; }>; /** * A specialized section which shows a tutorial video alongside some descriptive content. */ export declare const VideoSection: React.SFC;