/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface DisplayTableSlotRecipeVariant { fixedHeader: boolean } type DisplayTableSlotRecipeVariantMap = { [key in keyof DisplayTableSlotRecipeVariant]: Array } type DisplayTableSlotRecipeSlot = "wrapper" | "header" | "title" | "lead" | "body" | "table" export type DisplayTableSlotRecipeVariantProps = { [key in keyof DisplayTableSlotRecipeVariant]?: ConditionalValue | undefined } export interface DisplayTableSlotRecipeRecipe { __slot: DisplayTableSlotRecipeSlot __type: DisplayTableSlotRecipeVariantProps (props?: DisplayTableSlotRecipeVariantProps): Pretty> raw: (props?: DisplayTableSlotRecipeVariantProps) => DisplayTableSlotRecipeVariantProps variantMap: DisplayTableSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [DisplayTableSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: DisplayTableSlotRecipeVariantProps) => DisplayTableSlotRecipeVariantProps } /** * Slot class created for the MFUI DisplayTable component. */ export declare const displayTableSlotRecipe: DisplayTableSlotRecipeRecipe