import React from 'react';
export type Tab<T = string> = {
    label: string;
    value: T;
};
export type TabsProps = {
    tabs: Tab[];
    activeTab: number;
    onTabChange: (tab: number) => void;
};
export declare const Tabs: React.FC<TabsProps>;
