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