/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface KeyValueSlotRecipeVariant { size: "small" | "medium" } type KeyValueSlotRecipeVariantMap = { [key in keyof KeyValueSlotRecipeVariant]: Array } type KeyValueSlotRecipeSlot = "root" | "keyItem" | "valueItem" export type KeyValueSlotRecipeVariantProps = { [key in keyof KeyValueSlotRecipeVariant]?: ConditionalValue | undefined } export interface KeyValueSlotRecipeRecipe { __slot: KeyValueSlotRecipeSlot __type: KeyValueSlotRecipeVariantProps (props?: KeyValueSlotRecipeVariantProps): Pretty> raw: (props?: KeyValueSlotRecipeVariantProps) => KeyValueSlotRecipeVariantProps variantMap: KeyValueSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [KeyValueSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: KeyValueSlotRecipeVariantProps) => KeyValueSlotRecipeVariantProps } /** * Slot class created for the MFUI KeyValue component. */ export declare const keyValueSlotRecipe: KeyValueSlotRecipeRecipe