import React from 'react'; export interface RelatedContentProps { links: Array<{ name: string; href: string; }>; title?: string; } export declare const RelatedContent: React.FC;