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