import { VariantProps } from "class-variance-authority"; import { PolymorphicComponent } from "../../polymorphic"; declare const tabsItemCva: (props?: ({ isSelected?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type TabsItemCvaProps = VariantProps; export type TabsItemProps = Readonly<{ children: React.ReactNode; className?: string; isSelected?: boolean; onClick?: () => void; badge?: React.ReactNode; } & TabsItemCvaProps>; export declare const TabsItem: PolymorphicComponent<"button", TabsItemProps>; export {}; //# sourceMappingURL=TabsItem.d.ts.map