/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface HelpMessageRecipeVariant { messageAlign: "left" | "center" messageType: "neutral" | "error" | "caution" | "success" } type HelpMessageRecipeVariantMap = { [key in keyof HelpMessageRecipeVariant]: Array } type HelpMessageRecipeSlot = "root" | "icon" | "message" export type HelpMessageRecipeVariantProps = { [key in keyof HelpMessageRecipeVariant]?: ConditionalValue | undefined } export interface HelpMessageRecipeRecipe { __slot: HelpMessageRecipeSlot __type: HelpMessageRecipeVariantProps (props?: HelpMessageRecipeVariantProps): Pretty> raw: (props?: HelpMessageRecipeVariantProps) => HelpMessageRecipeVariantProps variantMap: HelpMessageRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [HelpMessageRecipeVariantProps, Pretty>] getVariantProps: (props?: HelpMessageRecipeVariantProps) => HelpMessageRecipeVariantProps } /** * Slot class created for the MFUI HelpMessage component */ export declare const helpMessageRecipe: HelpMessageRecipeRecipe