/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface MultipleSelectBoxSlotRecipeVariant { showGroupOptionDivider: boolean } type MultipleSelectBoxSlotRecipeVariantMap = { [key in keyof MultipleSelectBoxSlotRecipeVariant]: Array } type MultipleSelectBoxSlotRecipeSlot = "popover" | "menuHeader" | "optionPanel" | "listBox" | "listItem" | "skeletonItem" | "emptyMessage" | "menuFooter" | "scrollWrapper" | "infiniteScrollError" | "infiniteScrollErrorMessage" | "infiniteScrollErrorButton" | "infiniteScrollErrorIcon" | "infiniteScrollLoading" | "createOptionArea" | "createOptionButton" | "createOptionErrorMessage" export type MultipleSelectBoxSlotRecipeVariantProps = { [key in keyof MultipleSelectBoxSlotRecipeVariant]?: ConditionalValue | undefined } export interface MultipleSelectBoxSlotRecipeRecipe { __slot: MultipleSelectBoxSlotRecipeSlot __type: MultipleSelectBoxSlotRecipeVariantProps (props?: MultipleSelectBoxSlotRecipeVariantProps): Pretty> raw: (props?: MultipleSelectBoxSlotRecipeVariantProps) => MultipleSelectBoxSlotRecipeVariantProps variantMap: MultipleSelectBoxSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [MultipleSelectBoxSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: MultipleSelectBoxSlotRecipeVariantProps) => MultipleSelectBoxSlotRecipeVariantProps } /** * Slot class created for the MFUI MultipleSelectBox component. */ export declare const multipleSelectBoxSlotRecipe: MultipleSelectBoxSlotRecipeRecipe