import React from 'react'; import { Video } from '../__tests__/VideoData'; type DashboardContainerProps = { onRefresh: () => void; }; export declare const DashboardContainer: React.FC; type DashboardProps = { loading: boolean; mostRecent: Video[]; onRefresh: () => void; }; export declare const Dashboard: React.FC; export {};