/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface DisplayTableHeaderCellSlotRecipeVariant { type: "text" | "amount" fixedColumn: boolean edgeFixedColumn: "left" | "right" } type DisplayTableHeaderCellSlotRecipeVariantMap = { [key in keyof DisplayTableHeaderCellSlotRecipeVariant]: Array } type DisplayTableHeaderCellSlotRecipeSlot = "root" | "content" export type DisplayTableHeaderCellSlotRecipeVariantProps = { [key in keyof DisplayTableHeaderCellSlotRecipeVariant]?: ConditionalValue | undefined } export interface DisplayTableHeaderCellSlotRecipeRecipe { __slot: DisplayTableHeaderCellSlotRecipeSlot __type: DisplayTableHeaderCellSlotRecipeVariantProps (props?: DisplayTableHeaderCellSlotRecipeVariantProps): Pretty> raw: (props?: DisplayTableHeaderCellSlotRecipeVariantProps) => DisplayTableHeaderCellSlotRecipeVariantProps variantMap: DisplayTableHeaderCellSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [DisplayTableHeaderCellSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: DisplayTableHeaderCellSlotRecipeVariantProps) => DisplayTableHeaderCellSlotRecipeVariantProps } /** * Slot class created for the MFUI DisplayTableHeaderCell component. */ export declare const displayTableHeaderCellSlotRecipe: DisplayTableHeaderCellSlotRecipeRecipe