/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface ClearButtonSlotRecipeVariant { /** * @default "default" */ size: "small" | "default" | "large" } type ClearButtonSlotRecipeVariantMap = { [key in keyof ClearButtonSlotRecipeVariant]: Array } type ClearButtonSlotRecipeSlot = "root" export type ClearButtonSlotRecipeVariantProps = { [key in keyof ClearButtonSlotRecipeVariant]?: ConditionalValue | undefined } export interface ClearButtonSlotRecipeRecipe { __slot: ClearButtonSlotRecipeSlot __type: ClearButtonSlotRecipeVariantProps (props?: ClearButtonSlotRecipeVariantProps): Pretty> raw: (props?: ClearButtonSlotRecipeVariantProps) => ClearButtonSlotRecipeVariantProps variantMap: ClearButtonSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [ClearButtonSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: ClearButtonSlotRecipeVariantProps) => ClearButtonSlotRecipeVariantProps } /** * Slot class created for the MFUI ClearButton component. Adds mobile-friendly tap area on smDown. */ export declare const clearButtonSlotRecipe: ClearButtonSlotRecipeRecipe