import { default as React } from 'react';
interface Walkthrough {
    title: string;
    body: string;
    videoUrl?: string;
}
interface TutorialsProps {
    helpText?: string;
    walkthroughs?: {
        [key: string]: Walkthrough;
    };
}
declare const Tutorials: React.FC<TutorialsProps>;
export default Tutorials;
