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