import type { Component, ComponentDetail } from '../../types'; export interface Vm { parsedAuthor: { name?: string; email?: string; url?: string; }; component: Component; componentDetail?: ComponentDetail; dependencies: string[]; href: string; sandBoxDefaultQs: string; title: string; theme: 'light' | 'dark'; repositoryUrl: string | null; robots: boolean; } export default function Info(vm: Vm): JSX.Element;