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