import React from "react"; export declare type TabsProps = JSX.IntrinsicElements["ul"] & { /** Index of focsued tab */ value?: number; /** set focused index to active index on focus */ autoSelectOnFocus?: boolean; /** Callback on tab item changed */ onTabChange?: (index: number) => void; /** Callback on tab item when delete key is triggered */ onTabDelete?: (index: number) => void; }; /** Tabs organize and allow navigation between groups of content that are related and at the same level of hierarchy. */ export declare const Tabs: React.FC;