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