import { default as React, ComponentPropsWithoutRef } from 'react'; export interface TabsItemProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the value of the item */ value: string; /** * Specify if an item is disabled * @default false */ disabled?: boolean; /** * Specify an icon for an item */ icon?: React.ReactNode; /** * Specify text for an item */ children?: React.ReactNode; } export declare const TabsItem: ({ value, "disabled": _disabled, "className": _className, children, icon, "aria-label": ariaLabel, ...props }: TabsItemProps) => import("react/jsx-runtime").JSX.Element;