import React from 'react'; import { TimeAgo } from './time-ago'; declare function Overview(): React.JSX.Element; declare namespace Overview { var abstract: string; var labels: string[]; var examples: ({ scope: { TimeAgo: typeof TimeAgo; }; title: string; description: string; jsx: React.JSX.Element; code?: undefined; } | { scope: { TimeAgo: typeof TimeAgo; }; title: string; description: string; code: string; jsx?: undefined; })[]; } export default Overview;