/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface ItemsCountSlotRecipeVariant { } type ItemsCountSlotRecipeVariantMap = { [key in keyof ItemsCountSlotRecipeVariant]: Array } type ItemsCountSlotRecipeSlot = "root" | "itemsCount" | "separator" | "totalItems" export type ItemsCountSlotRecipeVariantProps = { [key in keyof ItemsCountSlotRecipeVariant]?: ConditionalValue | undefined } export interface ItemsCountSlotRecipeRecipe { __slot: ItemsCountSlotRecipeSlot __type: ItemsCountSlotRecipeVariantProps (props?: ItemsCountSlotRecipeVariantProps): Pretty> raw: (props?: ItemsCountSlotRecipeVariantProps) => ItemsCountSlotRecipeVariantProps variantMap: ItemsCountSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [ItemsCountSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: ItemsCountSlotRecipeVariantProps) => ItemsCountSlotRecipeVariantProps } /** * Slot class created for the MFUI ItemsCount component. */ export declare const itemsCountSlotRecipe: ItemsCountSlotRecipeRecipe