/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface StepperSlotRecipeVariant { /** * @default "right" */ labelPosition: "right" | "bottom" /** * @default "upcoming" */ status: "current" | "done" | "upcoming" /** * @default false */ interactive: boolean } type StepperSlotRecipeVariantMap = { [key in keyof StepperSlotRecipeVariant]: Array } type StepperSlotRecipeSlot = "root" | "list" | "item" | "content" | "indicator" | "label" | "connector" export type StepperSlotRecipeVariantProps = { [key in keyof StepperSlotRecipeVariant]?: StepperSlotRecipeVariant[key] | undefined } export interface StepperSlotRecipeRecipe { __slot: StepperSlotRecipeSlot __type: StepperSlotRecipeVariantProps (props?: StepperSlotRecipeVariantProps): Pretty> raw: (props?: StepperSlotRecipeVariantProps) => StepperSlotRecipeVariantProps variantMap: StepperSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [StepperSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: StepperSlotRecipeVariantProps) => StepperSlotRecipeVariantProps } /** * Slot class created for the MFUI Stepper component. */ export declare const stepperSlotRecipe: StepperSlotRecipeRecipe