import '@vtmn/css-tabs/dist/index-with-vars.css'; import { VitamixId } from '@vtmn/icons/dist/vitamix/font/vitamix'; import * as React from 'react'; export interface VtmnTabsItemProps extends React.ComponentPropsWithoutRef<'button'> { /** * The leading icon of the tab item. * @defaultValue null */ icon?: VitamixId; /** * The value of the ending tab item badge. * @defaultValue null */ badgeValue?: number; /** * The content to render inside the component. * @defaultValue undefined */ children?: React.ReactNode; } export declare const VtmnTabsItem: React.ForwardRefExoticComponent>; declare const MemoVtmnTabsItem: React.MemoExoticComponent>>; export default MemoVtmnTabsItem;