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