import { FC } from 'react'; interface ITab { label: string; key: string; } interface ITabBar { tabs: Array; value: number; fullWidth: boolean; disableRipple: boolean; setValue: (value: number) => void; } export declare const TabBar: FC; export {};