/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface DataTableRowSlotRecipeVariant { layout: "default" | "edge-to-edge" highlighted: boolean interactive: boolean disabled: boolean } type DataTableRowSlotRecipeVariantMap = { [key in keyof DataTableRowSlotRecipeVariant]: Array } type DataTableRowSlotRecipeSlot = "root" export type DataTableRowSlotRecipeVariantProps = { [key in keyof DataTableRowSlotRecipeVariant]?: DataTableRowSlotRecipeVariant[key] | undefined } export interface DataTableRowSlotRecipeRecipe { __slot: DataTableRowSlotRecipeSlot __type: DataTableRowSlotRecipeVariantProps (props?: DataTableRowSlotRecipeVariantProps): Pretty> raw: (props?: DataTableRowSlotRecipeVariantProps) => DataTableRowSlotRecipeVariantProps variantMap: DataTableRowSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [DataTableRowSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: DataTableRowSlotRecipeVariantProps) => DataTableRowSlotRecipeVariantProps } /** * Slot class created for the MFUI DataTableRow component. */ export declare const dataTableRowSlotRecipe: DataTableRowSlotRecipeRecipe