import React from 'react'; import './HorizontalTabs.less'; interface ITabProps { title: string; path: string; } export interface IHorizontalTabsProps { tabs: ITabProps[]; className?: string; onClick?: (props: ITabProps) => void; rightElement?: React.ReactElement; } export declare const HorizontalTabs: ({ tabs, className, onClick, rightElement }: IHorizontalTabsProps) => JSX.Element; export {};