/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface TextLinkSlotRecipeVariant { variant: "body" | "strongBody" | "condensedBody" | "strongCondensedBody" | "amount" | "strongAmount" | "helpMessage" | "strongHelpMessage" | "inherit" } type TextLinkSlotRecipeVariantMap = { [key in keyof TextLinkSlotRecipeVariant]: Array } type TextLinkSlotRecipeSlot = "root" | "externalLinkIconContainer" | "externalLinkIcon" export type TextLinkSlotRecipeVariantProps = { [key in keyof TextLinkSlotRecipeVariant]?: ConditionalValue | undefined } export interface TextLinkSlotRecipeRecipe { __slot: TextLinkSlotRecipeSlot __type: TextLinkSlotRecipeVariantProps (props?: TextLinkSlotRecipeVariantProps): Pretty> raw: (props?: TextLinkSlotRecipeVariantProps) => TextLinkSlotRecipeVariantProps variantMap: TextLinkSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [TextLinkSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: TextLinkSlotRecipeVariantProps) => TextLinkSlotRecipeVariantProps } /** * Slot class created for the MFUI TextLink component. */ export declare const textLinkSlotRecipe: TextLinkSlotRecipeRecipe