import React from "react";
export type TabItem = {
    id: string;
    label: string;
};
type TabListProps = {
    items: TabItem[];
    value?: string;
    orientation?: "horizontal" | "vertical";
    openItem?: (item: TabItem) => void;
};
declare const TabList: React.FC<TabListProps>;
export default TabList;
