/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface DisplayTableHeaderSlotRecipeVariant { fixedHeader: boolean } type DisplayTableHeaderSlotRecipeVariantMap = { [key in keyof DisplayTableHeaderSlotRecipeVariant]: Array } type DisplayTableHeaderSlotRecipeSlot = "root" export type DisplayTableHeaderSlotRecipeVariantProps = { [key in keyof DisplayTableHeaderSlotRecipeVariant]?: ConditionalValue | undefined } export interface DisplayTableHeaderSlotRecipeRecipe { __slot: DisplayTableHeaderSlotRecipeSlot __type: DisplayTableHeaderSlotRecipeVariantProps (props?: DisplayTableHeaderSlotRecipeVariantProps): Pretty> raw: (props?: DisplayTableHeaderSlotRecipeVariantProps) => DisplayTableHeaderSlotRecipeVariantProps variantMap: DisplayTableHeaderSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [DisplayTableHeaderSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: DisplayTableHeaderSlotRecipeVariantProps) => DisplayTableHeaderSlotRecipeVariantProps } /** * Slot class created for the MFUI DisplayTableHeader component. */ export declare const displayTableHeaderSlotRecipe: DisplayTableHeaderSlotRecipeRecipe