/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface DataTableCellSlotRecipeVariant { size: "small" | "medium" isCheckboxCell: boolean rowHighlighted: boolean fixedColumn: boolean edgeFixedColumn: "left" | "right" type: "text" | "amount" } type DataTableCellSlotRecipeVariantMap = { [key in keyof DataTableCellSlotRecipeVariant]: Array } type DataTableCellSlotRecipeSlot = "root" | "defaultCell" | "interactiveCell" | "disclosureIconWrapper" | "disclosureSpacing" | "skeletonCell" export type DataTableCellSlotRecipeVariantProps = { [key in keyof DataTableCellSlotRecipeVariant]?: ConditionalValue | undefined } export interface DataTableCellSlotRecipeRecipe { __slot: DataTableCellSlotRecipeSlot __type: DataTableCellSlotRecipeVariantProps (props?: DataTableCellSlotRecipeVariantProps): Pretty> raw: (props?: DataTableCellSlotRecipeVariantProps) => DataTableCellSlotRecipeVariantProps variantMap: DataTableCellSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [DataTableCellSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: DataTableCellSlotRecipeVariantProps) => DataTableCellSlotRecipeVariantProps } /** * Slot class created for the MFUI DataTableCell component. */ export declare const dataTableCellSlotRecipe: DataTableCellSlotRecipeRecipe