/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface TabsSlotRecipeVariant { } type TabsSlotRecipeVariantMap = { [key in keyof TabsSlotRecipeVariant]: Array } type TabsSlotRecipeSlot = "root" export type TabsSlotRecipeVariantProps = { [key in keyof TabsSlotRecipeVariant]?: ConditionalValue | undefined } export interface TabsSlotRecipeRecipe { __slot: TabsSlotRecipeSlot __type: TabsSlotRecipeVariantProps (props?: TabsSlotRecipeVariantProps): Pretty> raw: (props?: TabsSlotRecipeVariantProps) => TabsSlotRecipeVariantProps variantMap: TabsSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [TabsSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: TabsSlotRecipeVariantProps) => TabsSlotRecipeVariantProps } /** * Slot class created for the MFUI Tabs component. */ export declare const tabsSlotRecipe: TabsSlotRecipeRecipe