/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface DropdownMenuSlotRecipeVariant { } type DropdownMenuSlotRecipeVariantMap = { [key in keyof DropdownMenuSlotRecipeVariant]: Array } type DropdownMenuSlotRecipeSlot = "popover" export type DropdownMenuSlotRecipeVariantProps = { [key in keyof DropdownMenuSlotRecipeVariant]?: ConditionalValue | undefined } export interface DropdownMenuSlotRecipeRecipe { __slot: DropdownMenuSlotRecipeSlot __type: DropdownMenuSlotRecipeVariantProps (props?: DropdownMenuSlotRecipeVariantProps): Pretty> raw: (props?: DropdownMenuSlotRecipeVariantProps) => DropdownMenuSlotRecipeVariantProps variantMap: DropdownMenuSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [DropdownMenuSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: DropdownMenuSlotRecipeVariantProps) => DropdownMenuSlotRecipeVariantProps } /** * Slot class created for the MFUI DropdownMenu component. */ export declare const dropdownMenuSlotRecipe: DropdownMenuSlotRecipeRecipe