import { TabProps } from './interfaces'; import './FeTabs.scss'; export declare const FeTabs: (props: TabProps) => JSX.Element; declare type TTab = { children: JSX.Element | string; className?: string; idx: number; disabled?: boolean; onClick: (e: any, activeTab: number) => void; }; export declare const Tab: (props: TTab) => JSX.Element; export {};