import { ReactNode } from 'react'; export declare type TabProps = { label: string; panel?: ReactNode; }; export declare type TabsProps = { /** Use the items prop to describe the tabs items. */ items: TabProps[]; }; /** Easily create accessible, fully customizable tab interfaces, with robust focus management and keyboard navigation support. */ export declare const Tabs: ({ items }: TabsProps) => JSX.Element;