import React from "react"; import { TabsSlot } from "./tabs"; export declare type TabItemUnhandledProps = React.AllHTMLAttributes; export interface TabItemHandledProps { /** * The unique id for the tab item */ id: string; /** * The slot identifying this component to the TabItem component as a tab-item * the default string passed must be "tab-item" */ slot: TabsSlot.tabItem | string; /** * The tab-item content */ children?: React.ReactNode; } export declare type TabItemProps = TabItemHandledProps & TabItemUnhandledProps;