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