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