/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface FilterSelectBoxSlotRecipeVariant { } type FilterSelectBoxSlotRecipeVariantMap = { [key in keyof FilterSelectBoxSlotRecipeVariant]: Array } type FilterSelectBoxSlotRecipeSlot = "trigger" | "selectedText" | "text" export type FilterSelectBoxSlotRecipeVariantProps = { [key in keyof FilterSelectBoxSlotRecipeVariant]?: ConditionalValue | undefined } export interface FilterSelectBoxSlotRecipeRecipe { __slot: FilterSelectBoxSlotRecipeSlot __type: FilterSelectBoxSlotRecipeVariantProps (props?: FilterSelectBoxSlotRecipeVariantProps): Pretty> raw: (props?: FilterSelectBoxSlotRecipeVariantProps) => FilterSelectBoxSlotRecipeVariantProps variantMap: FilterSelectBoxSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [FilterSelectBoxSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: FilterSelectBoxSlotRecipeVariantProps) => FilterSelectBoxSlotRecipeVariantProps } /** * Slot class created for the MFUI FilterSelectBox component. */ export declare const filterSelectBoxSlotRecipe: FilterSelectBoxSlotRecipeRecipe