/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface TabMenuSlotRecipeVariant { } type TabMenuSlotRecipeVariantMap = { [key in keyof TabMenuSlotRecipeVariant]: Array } type TabMenuSlotRecipeSlot = "root" | "scrollButtons" | "scrollButton" export type TabMenuSlotRecipeVariantProps = { [key in keyof TabMenuSlotRecipeVariant]?: ConditionalValue | undefined } export interface TabMenuSlotRecipeRecipe { __slot: TabMenuSlotRecipeSlot __type: TabMenuSlotRecipeVariantProps (props?: TabMenuSlotRecipeVariantProps): Pretty> raw: (props?: TabMenuSlotRecipeVariantProps) => TabMenuSlotRecipeVariantProps variantMap: TabMenuSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [TabMenuSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: TabMenuSlotRecipeVariantProps) => TabMenuSlotRecipeVariantProps } /** * Slot class created for the MFUI TabMenu component. */ export declare const tabMenuSlotRecipe: TabMenuSlotRecipeRecipe