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