import React from 'react'; declare const AmendmentTabs: React.FC; interface Tab { title: string; url: string; noOfArticlesInThisCategory: number; } interface AmendmentTabsProps { tabs: Tab[]; onTabClick?: (e: React.MouseEvent, href: string) => void; currentArticleType?: string; } export { AmendmentTabs };