/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface TooltipSlotRecipeVariant { } type TooltipSlotRecipeVariantMap = { [key in keyof TooltipSlotRecipeVariant]: Array } type TooltipSlotRecipeSlot = "root" | "tooltip" | "arrow" export type TooltipSlotRecipeVariantProps = { [key in keyof TooltipSlotRecipeVariant]?: ConditionalValue | undefined } export interface TooltipSlotRecipeRecipe { __slot: TooltipSlotRecipeSlot __type: TooltipSlotRecipeVariantProps (props?: TooltipSlotRecipeVariantProps): Pretty> raw: (props?: TooltipSlotRecipeVariantProps) => TooltipSlotRecipeVariantProps variantMap: TooltipSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [TooltipSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: TooltipSlotRecipeVariantProps) => TooltipSlotRecipeVariantProps } /** * Slot class created for the MFUI Tooltip component. */ export declare const tooltipSlotRecipe: TooltipSlotRecipeRecipe