import React from 'react'; export interface LinkProps { name: string; href: string; label: string; description?: string; isFirst?: boolean; } declare const Link: React.FC; export default Link;